Commit a34d50d6 authored by Stefan Behnel's avatar Stefan Behnel

Remove an unused function argument.

parent 334a7383
......@@ -382,8 +382,8 @@ class StatListNode(Node):
child_attrs = ["stats"]
@staticmethod
def create_analysed(pos, env, *args, **kw):
node = StatListNode(pos, *args, **kw)
def create_analysed(pos, env, **kw):
node = StatListNode(pos, **kw)
return node # No node-specific analysis needed
def analyse_declarations(self, env):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment