Skip to content

Commit

Permalink
Improve substitute_arg error mesage
Browse files Browse the repository at this point in the history
  • Loading branch information
eivindjahren committed Sep 23, 2024
1 parent 0ead796 commit a44408b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ert/config/parsing/lark_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ def substitute_arg(
raise ValueError(
"Expected "
"Union[FileContextToken, List[Tuple[FileContextToken]]], "
f"got {arg}"
f"got {type(arg)}"
)

return [
Expand Down

0 comments on commit a44408b

Please sign in to comment.