Update submit_task.py

This commit is contained in:
ds0407 2023-05-11 12:30:59 +01:00 committed by GitHub
parent bcc6e81e44
commit adf9dc6849
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -103,13 +103,13 @@ class SubmitTaskCommand(Command):
"sender": self.sender, "sender": self.sender,
}, },
), ),
Submit( # Submit(
title="My Tasks", # title="My Tasks",
data={ # data={
"callback_keyword": "my_tasks_callback_rbamzfyx", # "callback_keyword": "my_tasks_callback_rbamzfyx",
"sender": self.sender, # "sender": self.sender,
}, # },
), # ),
Submit(title="Cancel", data={"command_keyword": "exit"}), Submit(title="Cancel", data={"command_keyword": "exit"}),
], ],
) )