Created
April 7, 2012 10:30
-
-
Save cinoss/2327292 to your computer and use it in GitHub Desktop.
python: new class
This file contains 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
class ClassName(object): | |
"""docstring for ClassName""" | |
def __init__(self, arg): | |
super(ClassName, self).__init__() | |
self.arg = arg | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment