mirror of
https://github.com/Bing-su/adetailer.git
synced 2026-01-26 19:29:54 +00:00
10 lines
215 B
Python
10 lines
215 B
Python
import argparse
|
|
|
|
|
|
def preload(parser: argparse.ArgumentParser):
|
|
parser.add_argument(
|
|
"--ad-no-huggingface",
|
|
action="store_true",
|
|
help="Don't use adetailer models from huggingface",
|
|
)
|