-
Notifications
You must be signed in to change notification settings - Fork 229
Open
Description
The pyminifier can't minify python indent like this:
if 1==1:
print("Hi")
--pyminifier-->exec(b'if 1==1:\nF=print\n F("Hi")\n')
I run into this problem when I run the code minified with pyminifier link
To solve the problem, you can add a tab to your Algorithm.
look like that :
exec(b'if 1==1:\nF=print\n F("Hi")\n') --adding tab--> exec(b'if 1==1:\n\tF=print \n\tF("Hi")')
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels