Skip to content

Instantly share code, notes, and snippets.

@jaapz
Created January 4, 2014 07:56
Show Gist options
  • Select an option

  • Save jaapz/8252864 to your computer and use it in GitHub Desktop.

Select an option

Save jaapz/8252864 to your computer and use it in GitHub Desktop.
correct docstrings
"""
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