From 2a32c21cb6ab91ea972deb6a2cfbc30d3e44b50d Mon Sep 17 00:00:00 2001 From: bonnal-enzo Date: Mon, 4 Dec 2023 03:50:16 +0100 Subject: [PATCH] typo --- kioss/_pipe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kioss/_pipe.py b/kioss/_pipe.py index f6fd95f..1f345e6 100644 --- a/kioss/_pipe.py +++ b/kioss/_pipe.py @@ -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]):