diff options
Diffstat (limited to 'wrappers/python/src')
| -rw-r--r-- | wrappers/python/src/main.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/wrappers/python/src/main.py b/wrappers/python/src/main.py index dd8f36a..47e2893 100644 --- a/wrappers/python/src/main.py +++ b/wrappers/python/src/main.py @@ -22,7 +22,9 @@ class EventHandler(object): return wrapped_f - def run_state(self, state: str, other_state: str, state_type: StateType, data: str) -> None: + def run_state( + self, state: str, other_state: str, state_type: StateType, data: str + ) -> None: if (state, state_type) not in self.handlers: return for func in self.handlers[(state, state_type)]: |
