Skip to content

Commit a798672

Browse files
committed
Remove specific edge case error message
1 parent cc80737 commit a798672

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/mdio/builder/dataset_builder.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -232,15 +232,6 @@ def add_variable( # noqa: PLR0913
232232
raise ValueError(msg)
233233
if dimensions is None or not dimensions:
234234
msg = "'dimensions' must be a non-empty list"
235-
if name == "trace_mask": # coverage: exclude
236-
msg += (
237-
"Error occurred while adding special case variable `trace_mask`."
238-
"This is likely an issue with how a custom template has been defined."
239-
"Please check the documentation https://github.com/TGSAI/mdio-python/issues/718 "
240-
"for more information."
241-
# TODO(Anybody): Update the link to point to the appropriate documentation when it is available.
242-
# https://github.com/TGSAI/mdio-python/issues/718
243-
)
244235
raise ValueError(msg)
245236

246237
# Validate that the variable is not already defined

0 commit comments

Comments
 (0)