diff options
| author | AAGaming <aagaming@riseup.net> | 2023-09-25 13:28:15 -0400 |
|---|---|---|
| committer | marios8543 <marios8543@gmail.com> | 2023-10-17 17:08:23 +0300 |
| commit | ca1332334d3e05d36419b3a65b6f5dbee35409ca (patch) | |
| tree | 779b683ad823eacb395794fad3009d35fd09c7f1 /backend/utilities.py | |
| parent | aebca54eaccaac827207c1d96b384224f93abb3b (diff) | |
| download | decky-loader-ca1332334d3e05d36419b3a65b6f5dbee35409ca.tar.gz decky-loader-ca1332334d3e05d36419b3a65b6f5dbee35409ca.zip | |
remove quotes on some types
Diffstat (limited to 'backend/utilities.py')
| -rw-r--r-- | backend/utilities.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/backend/utilities.py b/backend/utilities.py index 1e4110cf..3c7c8c2e 100644 --- a/backend/utilities.py +++ b/backend/utilities.py @@ -1,3 +1,4 @@ +from __future__ import annotations from os import stat_result import uuid from json.decoder import JSONDecodeError @@ -27,7 +28,7 @@ class FilePickerObj(TypedDict): is_dir: bool class Utilities: - def __init__(self, context: 'PluginManager') -> None: + def __init__(self, context: PluginManager) -> None: self.context = context self.util_methods: Dict[str, Callable[..., Coroutine[Any, Any, Any]]] = { "ping": self.ping, |
