Skip to content

Commit

Permalink
fix nested "
Browse files Browse the repository at this point in the history
  • Loading branch information
finn-rudolph committed Nov 14, 2024
1 parent 18f2d53 commit ddef6c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pydiverse/transform/_internal/ops/op.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,6 @@ def return_type(self, signature: Sequence[Dtype]) -> Dtype:
if match is None:
raise TypeError(
f"operator `{self.name}` cannot be called with arguments of type "
f"{", ".join(str(t) for t in signature)}"
f'{", ".join(str(t) for t in signature)}'
)
return match[1]

0 comments on commit ddef6c9

Please sign in to comment.