Skip to content

Commit c773eda

Browse files
committed
Pep8 check for adapter.py
1 parent 602888a commit c773eda

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

adapter.py

+6
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,31 @@
77
class Dog(object):
88
def __init__(self):
99
self.name = "Dog"
10+
1011
def bark(self):
1112
return "woof!"
1213

14+
1315
class Cat(object):
1416
def __init__(self):
1517
self.name = "Cat"
18+
1619
def meow(self):
1720
return "meow!"
1821

22+
1923
class Human(object):
2024
def __init__(self):
2125
self.name = "Human"
26+
2227
def speak(self):
2328
return "'hello'"
2429

2530

2631
class Car(object):
2732
def __init__(self):
2833
self.name = "Car"
34+
2935
def make_noise(self, octane_level):
3036
return "vroom{0}".format("!" * octane_level)
3137

0 commit comments

Comments
 (0)