Browse Source

Unified indentation

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

13
socketio/namespace.py

@ -48,9 +48,10 @@ class Namespace(object):
setattr(self, func_name, get_wrapped_method(func_name)) setattr(self, func_name, get_wrapped_method(func_name))
def _get_handlers(self): 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
handlers = {} provides."""
for attr_name in dir(self): handlers = {}
if attr_name.startswith('on_'): for attr_name in dir(self):
handlers[attr_name[3:]] = getattr(self, attr_name) if attr_name.startswith('on_'):
return handlers handlers[attr_name[3:]] = getattr(self, attr_name)
return handlers

Loading…
Cancel
Save