Skip to content

Commit

Permalink
Address lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
masih committed Nov 14, 2024
1 parent 5a90b09 commit 5240b88
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cli/f3.go
Original file line number Diff line number Diff line change
Expand Up @@ -295,9 +295,8 @@ separated, pied to STDIN. Example:
// Prune duplicate IDs.
if _, ok := seenIDs[actorID]; ok {
continue
} else {
seenIDs[actorID] = struct{}{}
}
seenIDs[actorID] = struct{}{}
scaled, key := pt.Get(actorID)
if key == nil {
return fmt.Errorf("actor ID %q not found in power table", actorID)
Expand Down

0 comments on commit 5240b88

Please sign in to comment.