diff options
author | Maxim Devaev <[email protected]> | 2022-09-04 18:08:40 +0300 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2022-09-04 18:08:40 +0300 |
commit | ee3e224e396494cd0d69bb6167087a071a20349c (patch) | |
tree | 5becd28570e58a03c6e1e231d0db24c264a73f88 /kvmd/helpers/remount/__init__.py | |
parent | 4b75221e9470b4a009955d7677f16adf8e23e302 (diff) |
new typing style
Diffstat (limited to 'kvmd/helpers/remount/__init__.py')
-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" |