Skip to content

Instantly share code, notes, and snippets.

@startling
Forked from willrjmarshall/gist:2411227
Created April 18, 2012 05:14
Show Gist options
  • Save startling/2411233 to your computer and use it in GitHub Desktop.
Save startling/2411233 to your computer and use it in GitHub Desktop.
class MyClass(object):
def __init__(self, c):
c.width = self.calculate_width()
c.height = self.calculate_height()
def calculate_width(self):
return 10
def calculate_height(self):
return 20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment