diff options
| author | AAGaming <aagaming@riseup.net> | 2023-09-25 13:06:46 -0400 |
|---|---|---|
| committer | marios8543 <marios8543@gmail.com> | 2023-10-31 23:12:43 +0200 |
| commit | 5582457c58c91d2e31e141bec1d2b139c9c2ff61 (patch) | |
| tree | 4cb4652519ef4b85b0fd81b5e8eef1422292eb36 /backend/src/updater.py | |
| parent | df755063c2cfd627f811b958c193c897dc0a4028 (diff) | |
| download | decky-loader-5582457c58c91d2e31e141bec1d2b139c9c2ff61.tar.gz decky-loader-5582457c58c91d2e31e141bec1d2b139c9c2ff61.zip | |
move to module imports
Diffstat (limited to 'backend/src/updater.py')
| -rw-r--r-- | backend/src/updater.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/src/updater.py b/backend/src/updater.py index d28e67b0..b4f92adb 100644 --- a/backend/src/updater.py +++ b/backend/src/updater.py @@ -27,7 +27,7 @@ class RemoteVer(TypedDict): assets: List[RemoteVerAsset] class Updater: - def __init__(self, context: PluginManager) -> None: + def __init__(self, context: 'PluginManager') -> None: self.context = context self.settings = self.context.settings # Exposes updater methods to frontend |
