Skip to content

Commit deae8f7

Browse files
hippolyteblotaxlbonnet
authored andcommitted
Clarification of the input check comment
1 parent 475c57a commit deae8f7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/vip_client/classes/VipLauncher.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1605,7 +1605,7 @@ def _check_invalid_input(self, input_settings: dict, parameters_ref=None):
16051605
for param in parameters_ref:
16061606
# Get parameter name
16071607
name = param['name']
1608-
# Skip irrelevant inputs (this should not happen after self._check_input_keys())
1608+
# Check only defined inputs
16091609
if name not in input_settings:
16101610
continue
16111611
# Get input value
@@ -1643,7 +1643,7 @@ def _check_input_values(self, input_settings: dict, location: str) -> None:
16431643
wrong_type_inputs = []
16441644
for param in self._pipeline_def['parameters']:
16451645
name = param['name']
1646-
# Skip irrelevant inputs
1646+
# Check only defined inputs
16471647
if name not in input_settings:
16481648
continue
16491649
value = input_settings.get(name)

0 commit comments

Comments
 (0)