We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e242bf commit 7943a6aCopy full SHA for 7943a6a
docs/customizing.md
@@ -147,8 +147,9 @@ A complex use case for hook factories is described over at [](usage.md#using-fac
147
Here's an example of using an unstructure hook factory to handle unstructuring [queues](https://docs.python.org/3/library/queue.html#queue.Queue).
148
149
```{doctest}
150
+>>> from collections.abc import Callable
151
>>> from queue import Queue
->>> from typing import get_origin
152
+>>> from typing import Any, get_args, get_origin
153
>>> from cattrs import Converter
154
155
>>> c = Converter()
0 commit comments