Remove the debug print that i accidentally left in.

parents fff84eb1 3a95f45a
...@@ -26,7 +26,6 @@ class FixReload(fixer_base.BaseFix): ...@@ -26,7 +26,6 @@ class FixReload(fixer_base.BaseFix):
# I feel like we should be able to express this logic in the # I feel like we should be able to express this logic in the
# PATTERN above but I don't know how to do it so... # PATTERN above but I don't know how to do it so...
obj = results['obj'] obj = results['obj']
print('obj:', repr(obj))
if obj: if obj:
if obj.type == self.syms.star_expr: if obj.type == self.syms.star_expr:
return # Make no change. return # Make no change.
......
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