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 (f Follow) Value() string { return f.Pubkey }
|
||||||
|
|
||||||
func (sys *System) FetchFollowList(ctx context.Context, pubkey string) FollowList {
|
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
|
return fl
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user