diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-07-21 12:59:43 -0400 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-07-21 12:59:43 -0400 |
| commit | d4c20b6e3a329e4b8988fb52938a346b4cce811e (patch) | |
| tree | 349e4dc99ec255eea21c7403f418e9496b1bed88 | |
| parent | 404b01b1acd5bd66e009176a71c21c29275fb6b9 (diff) | |
| download | decky-lsfg-vk-d4c20b6e3a329e4b8988fb52938a346b4cce811e.tar.gz decky-lsfg-vk-d4c20b6e3a329e4b8988fb52938a346b4cce811e.zip | |
rm unneeded BE changes
| -rw-r--r-- | py_modules/lsfg_vk/plugin.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/py_modules/lsfg_vk/plugin.py b/py_modules/lsfg_vk/plugin.py index 980cb53..425d7e7 100644 --- a/py_modules/lsfg_vk/plugin.py +++ b/py_modules/lsfg_vk/plugin.py @@ -432,7 +432,7 @@ class Plugin: # File content methods async def get_config_file_content(self) -> Dict[str, Any]: - """Get the current TOML configuration file content + """Get the current config file content Returns: Dict containing the config file content or error message @@ -444,7 +444,7 @@ class Plugin: "success": False, "content": None, "path": str(config_path), - "error": "Configuration file does not exist" + "error": "Config file does not exist" } content = config_path.read_text(encoding='utf-8') @@ -469,7 +469,7 @@ class Plugin: Dict containing the launch script content or error message """ try: - script_path = self.installation_service.lsfg_launch_script_path + script_path = self.installation_service.lsfg_script_path if not script_path.exists(): return { "success": False, |
