summaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
authorPartyWumpus <48649272+PartyWumpus@users.noreply.github.com>2024-09-27 18:05:16 +0100
committerPartyWumpus <48649272+PartyWumpus@users.noreply.github.com>2024-09-27 18:05:16 +0100
commitfb031f240a6e26b6776a352d0796d289f08a5078 (patch)
tree72adf41819cded7ef9708db56b09c5276126fab9 /main.py
parenta2de28e318580da6bb39fc297f3b1cdc68f7407b (diff)
downloaddecky-bazzite-buddy-fb031f240a6e26b6776a352d0796d289f08a5078.tar.gz
decky-bazzite-buddy-fb031f240a6e26b6776a352d0796d289f08a5078.zip
small cleanup
Diffstat (limited to 'main.py')
-rw-r--r--main.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.py b/main.py
index 17f1b15..65a10da 100644
--- a/main.py
+++ b/main.py
@@ -13,7 +13,8 @@ class Plugin:
async def long_running(self):
await asyncio.sleep(15)
- await decky.emit("test_event", "Hello from the backend!", True, 2)
+ # Passing through a bunch of random data, just as an example
+ await decky.emit("timer_event", "Hello from the backend!", True, 2)
# Asyncio-compatible long-running code, executed in a task when the plugin is loaded
async def _main(self):