Fixed more stuff

This commit is contained in:
Cutipus 2018-04-25 15:50:13 +03:00
parent d96f484d61
commit 68bf4cfd21
2 changed files with 2 additions and 2 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
__pycache__/

View File

@ -12,8 +12,7 @@ Usage example:
^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(3)?
>>> yes
>>> print(3)
>>> print(3) # <-- Automagically inserted
3
```
It will automagically do what you meant :^)
(The corrected print after the yes is not written by you)