MagicPython
MagicPython copied to clipboard
Atom Hydrogen error "unexpected EOF while parsing" for python `if` statement!?
trafficstars
Seems to be a problem w/ how Atom interprets the code. For loops it will give me the option to "fold" or "collapse" by clicking the carrot in the line number. Yet, if loops have no such luck.
-
Editor name and version: Atom 1.35.1
-
Platform: Mac OS Sierra 10.12.6
-
Color scheme: One Dark/Solarized Dark
-
MagicPython version: 0.4.15
-
A sreenshot:

-
5-10 lines of surrounding code:
## this works:
for i in range(10):
print( i)
## this doesn't:
if not False:
print("test worked")