diff options
-rwxr-xr-x | src/inverter_bot.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/inverter_bot.py b/src/inverter_bot.py index cf27ebe..7fe0ae2 100755 --- a/src/inverter_bot.py +++ b/src/inverter_bot.py @@ -649,7 +649,9 @@ if __name__ == '__main__': bot = InverterBot(store=db) bot.enable_logging(BotType.INVERTER) - bot.run() monitor.start() + + bot.run() + monitor.stop() |