Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
phschaad committed Dec 17, 2024
1 parent 25df0b1 commit 49ce68c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dace/subsets.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def covers_precise(self, other):
# Subsets of different dimensionality can never cover each other.
if self.dims() != other.dims():
return ValueError(
f"A subset of dimensionality {self.dim()} cannot test covering a subset of dimensionality {other.dims()}"
f"A subset of dimensionality {self.dims()} cannot test covering a subset of dimensionality {other.dims()}"
)

# If self does not cover other with a bounding box union, return false.
Expand Down

0 comments on commit 49ce68c

Please sign in to comment.