mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-07-11 23:41:59 +00:00
type hints on main,plugin,updater,utilites.localsocket
This commit is contained in:
@@ -1,4 +1,3 @@
|
|||||||
from __future__ import annotations
|
|
||||||
from os import stat_result
|
from os import stat_result
|
||||||
import uuid
|
import uuid
|
||||||
from json.decoder import JSONDecodeError
|
from json.decoder import JSONDecodeError
|
||||||
@@ -22,6 +21,11 @@ from .localplatform import ON_WINDOWS
|
|||||||
from . import helpers
|
from . import helpers
|
||||||
from .localplatform import service_stop, service_start, get_home_path, get_username
|
from .localplatform import service_stop, service_start, get_home_path, get_username
|
||||||
|
|
||||||
|
class FilePickerObj(TypedDict):
|
||||||
|
file: Path
|
||||||
|
filest: stat_result
|
||||||
|
is_dir: bool
|
||||||
|
|
||||||
class FilePickerObj(TypedDict):
|
class FilePickerObj(TypedDict):
|
||||||
file: Path
|
file: Path
|
||||||
filest: stat_result
|
filest: stat_result
|
||||||
|
|||||||
Reference in New Issue
Block a user