Fixed grammar under function "get_arguments" (#3152)
This commit is contained in:
parent
ae3f59ccae
commit
71a6c84df0
|
|
@ -174,7 +174,7 @@ def get_arguments() -> dict[str, Any]:
|
||||||
0) we create a dict to store the arguments and their values
|
0) we create a dict to store the arguments and their values
|
||||||
1) preprocess.
|
1) preprocess.
|
||||||
We take those arguments which use JSON files, and read them into the argument dict. So each first level entry
|
We take those arguments which use JSON files, and read them into the argument dict. So each first level entry
|
||||||
becomes a argument on it's own right
|
becomes an argument on its own right
|
||||||
2) Load.
|
2) Load.
|
||||||
We convert the predefined argument list directly into the dict via the vars() function. Non specified arguments
|
We convert the predefined argument list directly into the dict via the vars() function. Non specified arguments
|
||||||
are loaded with value None or false if they are booleans (action="store_true"). The name is chosen according to
|
are loaded with value None or false if they are booleans (action="store_true"). The name is chosen according to
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue