removed overwrite_existing_exportfilename_content (won't use it myself, wouldn't make sense for others to not overwrite something they re-calculated)

switched from args to config (args still work)
renamed exportfilename to lookahead_analysis_exportfilename so if users decide to put something into it then it won't compete with other configurations
This commit is contained in:
hippocritical
2023-05-10 22:41:27 +02:00
parent 9aac367534
commit 91ce1cb2ae
5 changed files with 19 additions and 14 deletions

View File

@@ -704,9 +704,10 @@ AVAILABLE_CLI_OPTIONS = {
metavar='INT',
default=20,
),
"overwrite_existing_exportfilename_content": Arg(
'--overwrite-existing-exportfilename-content',
help='overwrites existing contents if existent with exportfilename given',
action='store_true'
)
"lookahead_analysis_exportfilename": Arg(
'--lookahead-analysis-exportfilename',
help="Use this filename to store lookahead-analysis-results",
default=None,
type=str
),
}