Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
smonicas committed Sep 13, 2024
1 parent a60bd63 commit 7b408b2
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions slither/printers/guidance/echidna.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,7 @@ def json_serializable(cls):
my_super = super

def as_dict(self):
yield {
name: value for name, value in zip(self._fields, iter(my_super(cls, self).__iter__()))
}
yield {name: value for name, value in zip(self._fields, iter(my_super(cls, self).iter()))}

cls.__iter__ = as_dict
return cls
Expand Down

0 comments on commit 7b408b2

Please sign in to comment.