Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ebonnal committed Dec 4, 2023
1 parent 1feca1b commit 2a32c21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kioss/_pipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ def _accept(self, visitor: "AVisitor") -> Any:
return visitor.visit_catch_pipe(self)

def __str__(self) -> str:
return f"Catch(exception instances of classes [{', '.join(map(lambda class_: class_.__name__, self.classes))}]{', with an additional `when` condition' if self.when is not None else ''})"
return f"Catch(exception instances of class in [{', '.join(map(lambda class_: class_.__name__, self.classes))}]{', with an additional `when` condition' if self.when is not None else ''})"


class ChainPipe(APipe[T]):
Expand Down

0 comments on commit 2a32c21

Please sign in to comment.