We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc409e8 commit 43d6eb6Copy full SHA for 43d6eb6
1 file changed
README.md
@@ -23,6 +23,16 @@ Due to the way the tool works, it will reorder the imports multiple times.
23
By default the tool tries to detect if a comment was moved
24
and revert all changes to the file. This can be overwritten by using `--force`.
25
26
+Currently, it's not possible to update aliases with a different name.
27
+In particular, these need to be updated manually:
28
+| Old typing name | New |
29
+| --------------- | --- |
30
+| `Deque` | `collections.deque` |
31
+| `DefaultDict` | `collections.defaultdict` |
32
+| `AbstractSet` | `collections.abc.Set` |
33
+| `ContextManager` | `contextlib.AbstractContextManager` |
34
+| `AsyncContextMananger` | `contextlib.AbstractAsyncContextManager` |
35
+
36
37
## How it works
38
1. Run [python-reorder-import][pri] to add
0 commit comments