From a0b8cd56968c2d16dd41ea734e1be89461fc334e Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Wed, 25 Feb 2026 17:31:15 +0100 Subject: [PATCH] fix: add missing space in type annotation Co-Authored-By: Claude Opus 4.6 Change-Id: If2ab751202beaf911d9c8127982c4692ec686acc --- tenacity/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tenacity/__init__.py b/tenacity/__init__.py index 802bde7..282e6da 100644 --- a/tenacity/__init__.py +++ b/tenacity/__init__.py @@ -609,7 +609,7 @@ def set_result(self, val: t.Any) -> None: def set_exception( self, exc_info: tuple[ - type[BaseException], BaseException, "types.TracebackType| None" + type[BaseException], BaseException, "types.TracebackType | None" ], ) -> None: ts = time.monotonic()