Skip to content

Commit

Permalink
Pep8 check for adapter.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lord63 committed Mar 30, 2015
1 parent 602888a commit c773eda
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,31 @@
class Dog(object):
def __init__(self):
self.name = "Dog"

def bark(self):
return "woof!"


class Cat(object):
def __init__(self):
self.name = "Cat"

def meow(self):
return "meow!"


class Human(object):
def __init__(self):
self.name = "Human"

def speak(self):
return "'hello'"


class Car(object):
def __init__(self):
self.name = "Car"

def make_noise(self, octane_level):
return "vroom{0}".format("!" * octane_level)

Expand Down

0 comments on commit c773eda

Please sign in to comment.