diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-01-22 20:50:12 -0500 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-01-22 20:50:12 -0500 |
| commit | d6dbb82378b1bd473430c3c2a8a356390e1b9b13 (patch) | |
| tree | 57f5602c5c3e35c74ff6e54804ce7693f735c17d | |
| parent | dbbb342afa78c824e25a49ec679f725e44fe2fca (diff) | |
| download | Decky-Framegen-d6dbb82378b1bd473430c3c2a8a356390e1b9b13.tar.gz Decky-Framegen-d6dbb82378b1bd473430c3c2a8a356390e1b9b13.zip | |
fixed bad imports
| -rw-r--r-- | main.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 = [] |
