Skip to content

Instantly share code, notes, and snippets.

@198d
Last active December 13, 2015 17:38
Show Gist options
  • Save 198d/4949465 to your computer and use it in GitHub Desktop.
Save 198d/4949465 to your computer and use it in GitHub Desktop.
class A(Document):
prop = StringProperty(default='something')
class B(A):
prop = StringProperty(default='something else')
class B(A):
pass
B.prop.default = 'something else'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment