diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-05-10 09:02:23 +0300 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-05-10 09:02:23 +0300 |
commit | 4b854806d98cf5ccd48e5cd99c172613da7937f0 (patch) | |
tree | d4126545441e5b25fbb8aa19011499408d320e17 /modules/cmd_args.py | |
parent | f741a98baccae100fcfb40c017b5c35c5cba1b0c (diff) |
F401 fixes for ruff
Diffstat (limited to 'modules/cmd_args.py')
-rw-r--r-- | modules/cmd_args.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/cmd_args.py b/modules/cmd_args.py index d906a571..e01ca655 100644 --- a/modules/cmd_args.py +++ b/modules/cmd_args.py @@ -1,6 +1,6 @@ import argparse
import os
-from modules.paths_internal import models_path, script_path, data_path, extensions_dir, extensions_builtin_dir, sd_default_config, sd_model_file
+from modules.paths_internal import models_path, script_path, data_path, extensions_dir, extensions_builtin_dir, sd_default_config, sd_model_file # noqa: F401
parser = argparse.ArgumentParser()
|