More lint

This commit is contained in:
rocky
2022-11-27 03:52:43 -05:00
parent cab53b49b5
commit 55bb5640ee

View File

@@ -40,7 +40,7 @@ def make_function36(self, node, is_lambda, nested=1, code_node=None):
Python version 3.6 and above.
"""
# MAKE_CLOSURE adds an additional closure slot
# MAKE_CLOSURE adds a closure slot
# In Python 3.6 and above stack change again. I understand
# 3.7 changes some of those changes, although I don't
@@ -243,11 +243,9 @@ def make_function36(self, node, is_lambda, nested=1, code_node=None):
else:
self.write("*, ")
pass
ends_in_comma = True
else:
if argc > 0:
self.write(", ")
ends_in_comma = True
# ann_dict = kw_dict = default_tup = None
kw_dict = None