Skip to content

Instantly share code, notes, and snippets.

@stephengruppetta
Created May 15, 2023 19:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stephengruppetta/ba21ce4dbd61f6564cc54d01648fe1cb to your computer and use it in GitHub Desktop.
Save stephengruppetta/ba21ce4dbd61f6564cc54d01648fe1cb to your computer and use it in GitHub Desktop.
# hogwarts_magic.py
class Wizard:
# ...
class House:
# ...
def add_member(self, member):
if member not in self.members:
self.members.append(member)
# ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment