fix: append list to list
This commit is contained in:
parent
f4348c8d8e
commit
eda2ecfea3
1 changed files with 1 additions and 1 deletions
|
|
@ -54,4 +54,4 @@ def nostrmarket_start():
|
||||||
task1 = loop.create_task(catch_everything_and_restart(wait_for_paid_invoices))
|
task1 = loop.create_task(catch_everything_and_restart(wait_for_paid_invoices))
|
||||||
task2 = loop.create_task(catch_everything_and_restart(_subscribe_to_nostr_client))
|
task2 = loop.create_task(catch_everything_and_restart(_subscribe_to_nostr_client))
|
||||||
task3 = loop.create_task(catch_everything_and_restart(_wait_for_nostr_events))
|
task3 = loop.create_task(catch_everything_and_restart(_wait_for_nostr_events))
|
||||||
scheduled_tasks.append([task1, task2, task3])
|
scheduled_tasks.extend([task1, task2, task3])
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue