sdk: remove an unnecessary type annotation because this linter thing is annoying.

This commit is contained in:
fiatjaf
2024-10-18 07:09:05 -03:00
parent b58c4c5516
commit 986944059f

View File

@@ -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
}