From 986944059f599e9ba2d02595308da7cfca43ec38 Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Fri, 18 Oct 2024 07:09:05 -0300 Subject: [PATCH] sdk: remove an unnecessary type annotation because this linter thing is annoying. --- sdk/follows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/follows.go b/sdk/follows.go index f1d4671..98bd32f 100644 --- a/sdk/follows.go +++ b/sdk/follows.go @@ -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 }