Skip to content

Commit a801100

Browse files
committed
Code cleanup.
1 parent fe087fe commit a801100

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

sqlparse/sql.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,7 @@ def _pprint_tree(self, max_depth=None, depth=0, f=None, _pre=''):
189189
pre = '`- ' if last else '|- '
190190

191191
q = '"' if value.startswith("'") and value.endswith("'") else "'"
192-
print(f"{_pre}{pre}{idx} {cls} {q}{value}{q}"
193-
, file=f)
192+
print(f"{_pre}{pre}{idx} {cls} {q}{value}{q}", file=f)
194193

195194
if token.is_group and (max_depth is None or depth < max_depth):
196195
parent_pre = ' ' if last else '| '

0 commit comments

Comments
 (0)