use tuple
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Torma Kristóf 2020-08-25 01:44:47 +02:00
parent 15f369446c
commit 005372497c
Signed by: tormakris
GPG Key ID: DC83C4F2C41B1047
2 changed files with 4 additions and 2 deletions

4
.gitignore vendored
View File

@ -129,4 +129,6 @@ dmypy.json
# Pyre type checker
.pyre/
.idea/
.idea/
*.wav
*.log

View File

@ -46,7 +46,7 @@ def main() -> None:
Main function
:return:
"""
listofabcsignaprocessors = [SoundSignalProcessor()]
listofabcsignaprocessors = (SoundSignalProcessor())
loopingtimer = LoopingTimer(function=timer_tick, args=[listofabcsignaprocessors], interval=config.TICK_INTERVAL)
loopingtimer.start()