diff options
| author | AAGaming <aagaming@riseup.net> | 2026-07-13 21:50:41 -0400 |
|---|---|---|
| committer | AAGaming <aagaming@riseup.net> | 2026-07-13 21:50:41 -0400 |
| commit | 69475d9a0fbd4cb4a4e1fb257dff13385f2827a7 (patch) | |
| tree | 7031e48a63684a7735ee0473e4c98189629d25c9 | |
| parent | 00e866c39e0409561796816244fad8e92416e619 (diff) | |
| download | decky-loader-69475d9a0fbd4cb4a4e1fb257dff13385f2827a7.tar.gz decky-loader-69475d9a0fbd4cb4a4e1fb257dff13385f2827a7.zip | |
fix pyright i think
| -rw-r--r-- | backend/decky_loader/localplatform/localplatformmac.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/decky_loader/localplatform/localplatformmac.py b/backend/decky_loader/localplatform/localplatformmac.py index df8a5d16..fd31870b 100644 --- a/backend/decky_loader/localplatform/localplatformmac.py +++ b/backend/decky_loader/localplatform/localplatformmac.py @@ -1,9 +1,9 @@ from ..enums import UserType -import os, sys +import os from . import localplatformlinux # this should be public -def _get_effective_user_id() -> int: +def _get_effective_user_id() -> int: # pyright: ignore[reportUnusedFunction] return os.geteuid() def chown(path : str, user : UserType = UserType.HOST_USER, recursive : bool = True) -> bool: |
