Open alhashash opened 5 years ago
For example:
foo( # Multi-line string inside parentheses """ Line 1 Line 2 Line 3 Line 4 Line 5 """)
After pyminify:
foo( """ Line 1 Line 2 Line 3 Line 4 Line 5 """)
OTH, if there is no newline before the string it works correctly.
foo(""" Line 1 Line 2 Line 3 Line 4 Line 5 """)
For example:
After pyminify:
OTH, if there is no newline before the string it works correctly.