Skip to content

Instantly share code, notes, and snippets.

@imtapps
Created January 30, 2014 22:31
Show Gist options
  • Save imtapps/8721444 to your computer and use it in GitHub Desktop.
Save imtapps/8721444 to your computer and use it in GitHub Desktop.
class DummyMeta(type):
@property
def thing1(self):
return "in thing1"
class Dummy(object):
__metaclass__ = DummyMeta
# thing1 = 'asldfkj'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment