Go to file
Cutipus 1c58417ce6 Use types module for class inheritence instead 2018-04-26 21:05:45 +03:00
.gitignore Fixed more stuff 2018-04-25 15:50:13 +03:00
LICENSE Initial commit 2018-04-25 14:15:48 +03:00
README.md Fixed more stuff 2018-04-25 15:50:13 +03:00
yes.py Use types module for class inheritence instead 2018-04-26 21:05:45 +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)    # <-- Automagically inserted
3

It will automagically do what you meant :^)