From 00eff38f208f54f12ce9e32e6004c7a32f028aab Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Thu, 5 Aug 2021 16:44:37 +0100 Subject: [PATCH] Restore fix --- rich/repr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rich/repr.py b/rich/repr.py index 47602680..5fd2f436 100644 --- a/rich/repr.py +++ b/rich/repr.py @@ -19,7 +19,7 @@ T = TypeVar("T") Result = Iterable[Union[Any, Tuple[Any], Tuple[str, Any], Tuple[str, Any, Any]]] -Result = Result +RichReprResult = Result class ReprError(Exception):