Skip to content

Instantly share code, notes, and snippets.

@OrangeTux
Created October 19, 2015 09:00
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 OrangeTux/97149009564ca3a28b00 to your computer and use it in GitHub Desktop.
Save OrangeTux/97149009564ca3a28b00 to your computer and use it in GitHub Desktop.
class Zone
def __init__(self, damper=0):
self.damper = damper
Zone() # zone.damper is 0
Zone(1) # zone.damper is 1
Zone(damper=2) # zone.damper is 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment