浏览代码

Fix typing.

Jelmer Vernooij 3 年之前
父节点
当前提交
952573478a
共有 1 个文件被更改,包括 1 次插入1 次删除
  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,
     )