Skip to content

Commit 5ae6a5c

Browse files
committed
Fix pep8 warnings
1 parent eb5d00f commit 5ae6a5c

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

examples/class_server.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,9 @@ def __init__(self, *args, **kwargs):
1111
self.add_url('GET', '/hello-world', self.handler)
1212
self.add_url('GET', '/hello/{name}', self.say_hello)
1313

14-
1514
def handler(self, request):
1615
return {'hello': 'world'}
1716

18-
1917
def say_hello(self, request):
2018
return 'Hello, {}!'.format(request.matchdict['name'])
2119

0 commit comments

Comments
 (0)