diff options
author | Christian Breunig <christian@breunig.cc> | 2024-04-03 00:15:43 +0200 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-04-03 00:15:43 +0200 |
commit | 274b2da242acd1f1f64ff1dee471e34295137c5f (patch) | |
tree | 664ecd75f20eba0115761967a7728f2ab0c086ae /python/vyos/system/grub.py | |
parent | 4c7c168fe970b807750a05ceb66b70c0d8652535 (diff) | |
download | vyos-1x-274b2da242acd1f1f64ff1dee471e34295137c5f.tar.gz vyos-1x-274b2da242acd1f1f64ff1dee471e34295137c5f.zip |
T6199: drop unused Python imports
found using "git ls-files *.py | xargs pylint | grep W0611"
Diffstat (limited to 'python/vyos/system/grub.py')
-rw-r--r-- | python/vyos/system/grub.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/python/vyos/system/grub.py b/python/vyos/system/grub.py index 5ab9d76f0..faf68c2d1 100644 --- a/python/vyos/system/grub.py +++ b/python/vyos/system/grub.py @@ -18,7 +18,6 @@ import platform from pathlib import Path from re import MULTILINE, compile as re_compile from shutil import copy2 -from typing import Union from uuid import uuid5, NAMESPACE_URL, UUID from vyos.template import render @@ -463,4 +462,3 @@ def sort_inodes(dir_path: str) -> None: for item in temp_list_new: new_name = Path(f'{item.as_posix()[0:-4]}') item.rename(new_name) - |