Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alex28sh committed Nov 29, 2024
1 parent 9e69e3c commit 84b4965
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions verified_cogen/tools/pureCallsDetectors.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

class PureFunctionCallReplacer(ast.NodeTransformer):
def __init__(self, pure_non_helpers: List[str]):
self.pure_functions = list()
self.detected_calls = list()
self.pure_functions: List[str] = list()
self.detected_calls: List[str] = list()
self.current_function = None
self.in_pure_function = False
self.in_condition = False
Expand Down

0 comments on commit 84b4965

Please sign in to comment.