Browse Source

Fix typing.

Jelmer Vernooij 3 năm trước cách đây
mục cha
commit
952573478a
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      dulwich/config.py

+ 1 - 1
dulwich/config.py

@@ -41,7 +41,7 @@ try:
         MutableMapping,
     )
 except ImportError:  # python < 3.7
-    from collections import (
+    from collections import (  # type: ignore
         Iterable,
         MutableMapping,
     )