Skip to content

Commit

Permalink
Remove unused # type: ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
eivindjahren committed Oct 14, 2024
1 parent c9b58d8 commit b5104b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ert/config/ert_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def initializeAndRun(
arg_type = argument_types[index] if index < len(argument_types) else str

if arg_value is not None:
arguments.append(arg_type(arg_value)) # type: ignore
arguments.append(arg_type(arg_value))
else:
arguments.append(None)
fixtures["workflow_args"] = arguments
Expand Down

0 comments on commit b5104b6

Please sign in to comment.