Browse Source

Unified indentation

pull/43/merge^2
Robert Schindler 9 years ago
parent
commit
a38fdbc28b
  1. 3
      socketio/namespace.py

3
socketio/namespace.py

@ -48,7 +48,8 @@ class Namespace(object):
setattr(self, func_name, get_wrapped_method(func_name))
def _get_handlers(self):
"""Returns a dict of event names and handlers this namespace provides."""
"""Returns a dict of event names and handlers this namespace
provides."""
handlers = {}
for attr_name in dir(self):
if attr_name.startswith('on_'):

Loading…
Cancel
Save