unparser.py: remove print statements (#45235)
This commit is contained in:
parent
7b644719c1
commit
cc47ee3984
1 changed files with 0 additions and 2 deletions
|
@ -554,9 +554,7 @@ def visit_FormattedValue(self, node):
|
||||||
|
|
||||||
def _fstring_JoinedStr(self, node, write):
|
def _fstring_JoinedStr(self, node, write):
|
||||||
for value in node.values:
|
for value in node.values:
|
||||||
print(" ", value)
|
|
||||||
meth = getattr(self, "_fstring_" + type(value).__name__)
|
meth = getattr(self, "_fstring_" + type(value).__name__)
|
||||||
print(meth)
|
|
||||||
meth(value, write)
|
meth(value, write)
|
||||||
|
|
||||||
def _fstring_Str(self, node, write):
|
def _fstring_Str(self, node, write):
|
||||||
|
|
Loading…
Reference in a new issue