()
| 31 | |
| 32 | |
| 33 | def create_temp_path_program() -> ArgumentParser: |
| 34 | program = ArgumentParser(add_help = False) |
| 35 | group_paths = program.add_argument_group('paths') |
| 36 | group_paths.add_argument('--temp-path', help = translator.get('help.temp_path'), default = config.get_str_value('paths', 'temp_path', tempfile.gettempdir())) |
| 37 | job_store.register_job_keys([ 'temp_path' ]) |
| 38 | return program |
| 39 | |
| 40 | |
| 41 | def create_jobs_path_program() -> ArgumentParser: |