Skip to content

Instantly share code, notes, and snippets.

@leangaurav
Last active July 19, 2019 23:02
Show Gist options
  • Save leangaurav/04be22350a8740eca0bb291124c13c3d to your computer and use it in GitHub Desktop.
Save leangaurav/04be22350a8740eca0bb291124c13c3d to your computer and use it in GitHub Desktop.

TestCode

w = Wings()
c = ChickenWings()
c.__class__, w.__class__ = w.__class__, c.__class__
print(w.__class__, type(w))
print(c.__class__, type(c))

Output
<class 'wings.ChickenWings'> <class 'wings.ChickenWings'>
<class 'wings.Wings'> <class 'wings.Wings'>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment