Created
January 4, 2014 07:56
-
-
Save jaapz/8252864 to your computer and use it in GitHub Desktop.
correct docstrings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| User interface class, responsible for console input and output | |
| """ | |
| class Ui: | |
| def __init__(self): | |
| pass | |
| class Ui: | |
| """ | |
| User interface class, responsible for console input and output | |
| """ | |
| def __init__(self): | |
| """ Do init stuff """ | |
| pass |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment