Skip to content

Commit

Permalink
sdk: remove an unnecessary type annotation because this linter thing …
Browse files Browse the repository at this point in the history
…is annoying.
  • Loading branch information
fiatjaf committed Oct 18, 2024
1 parent b58c4c5 commit 9869440
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/follows.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 9869440

Please sign in to comment.