Skip to content

Commit 161f8cf

Browse files
committed
lint fix
1 parent 978924d commit 161f8cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codeflash/code_utils/deduplicate_code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def visit_Global(self, node): # noqa : ANN001, ANN201
7070
self.global_vars.update(node.names)
7171
return node
7272

73-
def visit_Nonlocal(self, node):
73+
def visit_Nonlocal(self, node): # noqa : ANN001, ANN201
7474
"""Track nonlocal variable declarations."""
7575
# Using set.update for batch insertion (faster than add-in-loop)
7676
self.nonlocal_vars.update(node.names)

0 commit comments

Comments
 (0)