Skip to content

Instantly share code, notes, and snippets.

@leangaurav
Created July 19, 2019 22:43
Show Gist options
  • Save leangaurav/f0c74b282076c97ed6d4df6186407f8f to your computer and use it in GitHub Desktop.
Save leangaurav/f0c74b282076c97ed6d4df6186407f8f to your computer and use it in GitHub Desktop.

TestCode

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

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

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