remove unused imports in save_config.py

This commit is contained in:
Théophile Diot 2023-07-07 13:13:52 -04:00
parent 0d554a5f5d
commit a4f4dfe4e6
No known key found for this signature in database
GPG Key ID: E752C80DB72BB014
1 changed files with 2 additions and 2 deletions

View File

@ -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