Skip to content

Instantly share code, notes, and snippets.

@curiositycasualty
Created November 7, 2017 01:06
Show Gist options
  • Save curiositycasualty/b7e182bf4ea266d3117de00fbf61f18b to your computer and use it in GitHub Desktop.
Save curiositycasualty/b7e182bf4ea266d3117de00fbf61f18b to your computer and use it in GitHub Desktop.
In [1]: class Yay:
...: def __init__(self, ugh):
...: self.ugh = ugh,
...:
In [2]: y=Yay('yay')
In [3]: y.ugh
Out[3]: ('yay',)
In [4]: class Yay:
...: def __init__(self, ugh):
...: self.ugh = ugh
...:
In [5]: y=Yay('yay')
In [6]: y.ugh
Out[6]: 'yay'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment