Skip to content

Instantly share code, notes, and snippets.

@NathanW2
Created January 13, 2016 23:38
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 NathanW2/b8b40a7a02fa199c6076 to your computer and use it in GitHub Desktop.
Save NathanW2/b8b40a7a02fa199c6076 to your computer and use it in GitHub Desktop.
class MyInterface:
def method1(self, arg):
pass
def method2(self, arg):
pass
class MyObject(MyInterface):
def method1(self, arg):
do something
def method2(self, arg):
do something
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment