Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
workflow
ewoksapps
est
Commits
3a2e8b9f
Commit
3a2e8b9f
authored
Jul 22, 2021
by
payno
Browse files
[app][process] fix default value
parent
89f20e98
Changes
2
Hide whitespace changes
Inline
Side-by-side
est/app/process.py
View file @
3a2e8b9f
...
...
@@ -77,7 +77,7 @@ def main(argv):
"--input-dimensions"
,
"--dimensions"
,
dest
=
"input_dimensions"
,
default
=
"
None
"
,
default
=
None
,
help
=
"dimension of the input as (Z,Y,X) for example."
"If None will take default unit according to the input type"
,
)
...
...
@@ -86,28 +86,28 @@ def main(argv):
"--input-I0"
,
"--I0"
,
dest
=
"input_I0"
,
default
=
"
None
"
,
default
=
None
,
help
=
"url to I0"
,
)
parser
.
add_argument
(
"--input-I1"
,
"--I1"
,
dest
=
"input_I1"
,
default
=
"
None
"
,
default
=
None
,
help
=
"url to I1"
,
)
parser
.
add_argument
(
"--input-I2"
,
"--I2"
,
dest
=
"input_I2"
,
default
=
"
None
"
,
default
=
None
,
help
=
"url to I2"
,
)
parser
.
add_argument
(
"--input-mu-ref"
,
"--mu-ref"
,
dest
=
"input_mu_ref"
,
default
=
"
None
"
,
default
=
None
,
help
=
"url to mu_ref"
,
)
# spec file specific inputs
...
...
est/io/test/test_information.py
→
est/io/test/test_
input_
information.py
View file @
3a2e8b9f
File moved
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment