From d35bf06bf6d6a66d9dbaa0ca7bf1337a0b95323b Mon Sep 17 00:00:00 2001 From: BobTheBuidler <70677534+BobTheBuidler@users.noreply.github.com> Date: Wed, 20 Nov 2024 21:13:42 -0400 Subject: [PATCH] chore: add debug data to exc (#405) --- a_sync/iter.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/a_sync/iter.pyx b/a_sync/iter.pyx index 7a3a9fe7..99793c67 100644 --- a/a_sync/iter.pyx +++ b/a_sync/iter.pyx @@ -126,7 +126,7 @@ class _AwaitableAsyncIterableMixin(AsyncIterable[T]): # type_argument = str(type_argument) raise NotImplementedError( "I think this is prevented by the rules of python Generic", - type_argument, + type_argument, type(type_argument) ) elif hasattr(type_argument, "__module__") and hasattr( type_argument, "__qualname__"