Skip to content

Commit

Permalink
rename variable
Browse files Browse the repository at this point in the history
  • Loading branch information
sandbubbles committed Dec 15, 2024
1 parent bb4944f commit b41bc28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vyper/semantics/types/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -575,8 +575,8 @@ def is_initializable(self):
if self.init_function is not None:
return True

for fun in self.functions.values():
if fun.nonreentrant:
for fn_t in self.functions.values():
if fn_t.nonreentrant:
return True

return False

0 comments on commit b41bc28

Please sign in to comment.