Skip to content

Commit

Permalink
Space means KISS and readability
Browse files Browse the repository at this point in the history
  • Loading branch information
koalalorenzo committed Aug 13, 2014
1 parent 107ed5d commit 2a74faa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions digitalocean/Domain.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ def __init__(self, *args, **kwargs):
self.ttl = None
self.zone_file = None
self.ip_address = None

super(Domain, self).__init__(*args, **kwargs)

def load(self):
Expand Down
1 change: 1 addition & 0 deletions digitalocean/Image.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ def __init__(self, *args, **kwargs):
self.public = None
self.regions = []
self.created_at = None

super(Image, self).__init__(*args, **kwargs)

def destroy(self):
Expand Down
1 change: 1 addition & 0 deletions digitalocean/Size.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ def __init__(self, *args, **kwargs):
self.price_monthly = None
self.price_hourly = None
self.regions = []

super(Size, self).__init__(*args, **kwargs)

0 comments on commit 2a74faa

Please sign in to comment.