Skip to content

Instantly share code, notes, and snippets.

@hudsonbrendon
Created June 9, 2024 00:18
Show Gist options
  • Save hudsonbrendon/35d3a01730d9db3b8ae19f5e978b2209 to your computer and use it in GitHub Desktop.
Save hudsonbrendon/35d3a01730d9db3b8ae19f5e978b2209 to your computer and use it in GitHub Desktop.
class Parent(object):
def __init__(self):
print('Building the Parent class')
class Child(Pai):
def __init__(self):
super(Child, self).__init__()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment