瀏覽代碼

merge: fix type override

Jelmer Vernooij 6 月之前
父節點
當前提交
68e214f647
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      dulwich/merge.py

+ 1 - 1
dulwich/merge.py

@@ -5,7 +5,7 @@ from typing import Optional
 try:
     import merge3
 except ImportError:
-    merge3 = None
+    merge3 = None  # type: ignore
 
 from dulwich.attrs import GitAttributes
 from dulwich.config import Config