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 7d52677 commit 59d80e7
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 59d80e7

Please sign in to comment.