We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35d858a commit eae9a39Copy full SHA for eae9a39
main.py
@@ -6,6 +6,7 @@
6
sys.path.append(os.path.join(parent_folder_path, "lib"))
7
sys.path.append(os.path.join(parent_folder_path, ".venv", "lib", "site-packages"))
8
9
+import asyncio
10
import logging
11
12
from flogin import Plugin
@@ -22,6 +23,7 @@ async def on_initialization() -> None:
22
23
24
if plugin.metadata.disabled:
25
log.info("plugin disabled, not sending notification")
26
+ await asyncio.sleep(2)
27
else:
28
await plugin.api.show_notification(
29
"Flow Load Notification",
0 commit comments