Skip to content

Commit 91be0fc

Browse files
committed
Fix regression with spaces between tuple values
1 parent cc11b37 commit 91be0fc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/python_minifier/expression_printer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -768,7 +768,7 @@ def token_break(self):
768768
if len(self.code) == 0:
769769
return
770770

771-
if self.code[-1] not in '[]{}() :"\'=\n\t<>|^&+-*@/%;':
771+
if self.code[-1] not in '[]{}() :"\'=\n\t<>|^&+-*@/%;,':
772772
self.code += ' '
773773

774774
def visit_JoinedStr(self, node):

0 commit comments

Comments
 (0)