Skip to content

Commit 99b4387

Browse files
author
Claudiu Popa
committed
Use a no-name argument for visit_script_block, for consistency.
1 parent 794a32f commit 99b4387

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wispy/builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def visit_switch_statement(self, node, parent):
190190
newnode.body = self.iter_generic_visit(node[7], newnode)
191191
return newnode
192192

193-
def visit_script_block(self, node):
193+
def visit_script_block(self, node, _):
194194
"""
195195
Visit a ScriptBlock grammar node and return the AST
196196
representing it.

0 commit comments

Comments
 (0)