Skip to content

Commit 44ce5eb

Browse files
committed
REF: Refactor of keyboard module.
FIX: Properly import the config module so delay can be customized. FIX: Remove debug prints from bot module.
1 parent 11a08cd commit 44ce5eb

File tree

5 files changed

+139
-124
lines changed

5 files changed

+139
-124
lines changed

botcity/core/bot.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,12 +98,10 @@ def main(cls):
9898
if len(sys.argv) == 4:
9999
if maestro_available:
100100
server, task_id, token = sys.argv[1:4]
101-
print('Got Maestro values: ', server, task_id, token)
102101
bot.maestro = BotMaestroSDK(server=server)
103102
bot.maestro.access_token = token
104103

105104
parameters = bot.maestro.get_task(task_id).parameters
106-
print('Maestro Task Parameters: ', parameters)
107105

108106
execution = BotExecution(server, task_id, token, parameters)
109107
else:

0 commit comments

Comments
 (0)