mirror of
https://github.com/nbd-wtf/go-nostr.git
synced 2025-08-27 14:22:20 +02:00
sdk: remove an unnecessary type annotation because this linter thing is annoying.
This commit is contained in:
@@ -19,7 +19,7 @@ type Follow struct {
|
||||
func (f Follow) Value() string { return f.Pubkey }
|
||||
|
||||
func (sys *System) FetchFollowList(ctx context.Context, pubkey string) FollowList {
|
||||
fl, _ := fetchGenericList[Follow](sys, ctx, pubkey, 3, parseFollow, sys.FollowListCache, false)
|
||||
fl, _ := fetchGenericList(sys, ctx, pubkey, 3, parseFollow, sys.FollowListCache, false)
|
||||
return fl
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user