diff options
Diffstat (limited to 'kvmd/helpers')
-rw-r--r-- | kvmd/helpers/remount/__init__.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/kvmd/helpers/remount/__init__.py b/kvmd/helpers/remount/__init__.py index 9ea2889d..80e683f5 100644 --- a/kvmd/helpers/remount/__init__.py +++ b/kvmd/helpers/remount/__init__.py @@ -27,8 +27,6 @@ import shutil import dataclasses import subprocess -from typing import List - # ==== _MOUNT_PATH = "/bin/mount" @@ -98,7 +96,7 @@ def main() -> None: raise SystemExit(f"Usage: {sys.argv[0]} [ro|rw]") target = "" - dirs: List[str] = [] + dirs: list[str] = [] app = os.path.basename(sys.argv[0]) if app == "kvmd-helper-otgmsd-remount": target = "otgmsd" |