From a4f4dfe4e682b3106447f20e351a7e5bd9ecb35f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophile=20Diot?= Date: Fri, 7 Jul 2023 13:13:52 -0400 Subject: [PATCH] remove unused imports in save_config.py --- src/common/gen/save_config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/gen/save_config.py b/src/common/gen/save_config.py index 311650be2..71a0f572b 100644 --- a/src/common/gen/save_config.py +++ b/src/common/gen/save_config.py @@ -1,8 +1,8 @@ #!/usr/bin/python3 from argparse import ArgumentParser -from os import R_OK, X_OK, access, environ, getenv, listdir, sep, walk -from os.path import basename, join, normpath +from os import R_OK, X_OK, access, environ, getenv, sep +from os.path import join, normpath from pathlib import Path from re import compile as re_compile from sys import exit as sys_exit, path as sys_path