Go to file
Cutipus d96f484d61 No longer requires a from import 2018-04-25 15:43:27 +03:00
LICENSE Initial commit 2018-04-25 14:15:48 +03:00
README.md No longer requires a rom import 2018-04-25 15:36:38 +03:00
yes.py No longer requires a rom import 2018-04-25 15:36:38 +03:00

README.md

yes-thats-what-i-meant

When Python knows what you meant

Requires python 3.6 and above.

Usage example:

>>> import yes
>>> print 3
  File "<stdin>", line 1
    print 3
          ^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(3)?
>>> yes
>>> print(3)
3

It will automagically do what you meant :^) (The corrected print after the yes is not written by you)