summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2025-01-22 20:50:12 -0500
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2025-01-22 20:50:12 -0500
commitd6dbb82378b1bd473430c3c2a8a356390e1b9b13 (patch)
tree57f5602c5c3e35c74ff6e54804ce7693f735c17d
parentdbbb342afa78c824e25a49ec679f725e44fe2fca (diff)
downloadDecky-Framegen-d6dbb82378b1bd473430c3c2a8a356390e1b9b13.tar.gz
Decky-Framegen-d6dbb82378b1bd473430c3c2a8a356390e1b9b13.zip
fixed bad imports
-rw-r--r--main.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.py b/main.py
index 94f45f0..5b60721 100644
--- a/main.py
+++ b/main.py
@@ -1,9 +1,9 @@
import os
import subprocess
import json
-from decky_plugin import PluginBase
+import decky
-class Plugin(PluginBase):
+class Plugin:
async def get_installed_games(self) -> str:
library_file = "/home/deck/.steam/steam/steamapps/libraryfolders.vdf"
libraries = []