Skip to content

Instantly share code, notes, and snippets.

@barik
Last active December 27, 2015 06:29
Show Gist options
  • Save barik/7281640 to your computer and use it in GitHub Desktop.
Save barik/7281640 to your computer and use it in GitHub Desktop.
class MyClass(object):
@staticmethod
def foo(name):
print("Hello!")
MyClass.foo("Hello")
MyClass().foo("Hello") # Fails without @staticmethod.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment