diff options
author | Jonathan Weth <git@jonathanweth.de> | 2020-07-31 16:42:32 +0200 |
---|---|---|
committer | Jonathan Weth <git@jonathanweth.de> | 2020-07-31 16:42:32 +0200 |
commit | b58644f3aa275f05f7f51aba9b7009bd128c03ed (patch) | |
tree | 87656e1893ccc4afba71d79a91ea227d680f6085 | |
parent | bb5a7fcf30e11c7b955f46572de1ef4a3b773c97 (diff) | |
download | RWA.Support.SessionService-b58644f3aa275f05f7f51aba9b7009bd128c03ed.tar.gz RWA.Support.SessionService-b58644f3aa275f05f7f51aba9b7009bd128c03ed.tar.bz2 RWA.Support.SessionService-b58644f3aa275f05f7f51aba9b7009bd128c03ed.zip |
Fix typo
-rw-r--r-- | trigger.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ from flask import Flask, abort, request class TriggerServerThread(threading.Thread): - """Simple Flask server (wrapped as thread) for triggering actions on sesssions.""" + """Simple Flask server (wrapped as thread) for triggering actions on sessions.""" def __init__(self, trigger_method: Callable[[str], Any]): super().__init__() |