1
0
mirror of https://github.com/avatao-content/test-tutorial-framework synced 2025-07-07 05:56:24 +00:00

Comply EventHandler changes

This commit is contained in:
Kristóf Tóth
2019-06-28 15:12:27 +02:00
parent 8335338a96
commit b392749643
7 changed files with 11 additions and 13 deletions

View File

@ -18,6 +18,8 @@ LOG = logging.getLogger(__name__)
if __name__ == '__main__':
# pylint: disable=pointless-string-statement
TFWLog().start()
"""
Creates general purpose pipes.
The first parameter associates the receiving pipe with a key, which is
@ -71,7 +73,7 @@ if __name__ == '__main__':
)
event_handlers = EventHandlerBase.get_local_instances()
def stop(sig, frame):
def stop(sig, frame): # pylint: disable=unused-argument
for eh in event_handlers:
eh.stop()
exit(0)