()
| 22 | |
| 23 | |
| 24 | def create_config_path_program() -> ArgumentParser: |
| 25 | program = ArgumentParser(add_help = False) |
| 26 | group_paths = program.add_argument_group('paths') |
| 27 | group_paths.add_argument('--config-path', help = translator.get('help.config_path'), default = 'facefusion.ini') |
| 28 | job_store.register_job_keys([ 'config_path' ]) |
| 29 | apply_config_path(program) |
| 30 | return program |
| 31 | |
| 32 | |
| 33 | def create_temp_path_program() -> ArgumentParser: |
no test coverage detected