summaryrefslogtreecommitdiff
path: root/wrappers/python/src
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2022-05-13 16:08:32 +0200
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2022-05-13 16:08:32 +0200
commit4d2f93fa46adc037f1237ebd35e3faafb4a7759a (patch)
tree5ae0c3aacf99a6c6be9d9f754bfa4d1eef584b97 /wrappers/python/src
parent5abf00ab87a55662eefc7716de52ead9749293c6 (diff)
Python + Go: Run formatter
Diffstat (limited to 'wrappers/python/src')
-rw-r--r--wrappers/python/src/main.py4
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)]: