Skip to content

Instantly share code, notes, and snippets.

@wojtek-fliposports
Created February 15, 2017 11:50
Show Gist options
  • Save wojtek-fliposports/b150113bb37cd4bd3499d9eb5a7060bb to your computer and use it in GitHub Desktop.
Save wojtek-fliposports/b150113bb37cd4bd3499d9eb5a7060bb to your computer and use it in GitHub Desktop.
class Fruit(object):
name = None
def __init__(self, name):
self.name = name
class FancyFruit(Fruit):
@classmethod
def fromString(cls, name):
return Fruit(name)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment