Skip to content

Commit 44346bb

Browse files
committed
Fix mypy error
1 parent 1c2defd commit 44346bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sphinx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
try:
1212
from sphinx.util._pathlib import _StrPath
1313
except ImportError:
14-
from pathlib import Path as _StrPath
14+
from pathlib import Path as _StrPath # type: ignore[assignment]
1515

1616
TYPE_CHECKING = False
1717
if TYPE_CHECKING:

0 commit comments

Comments
 (0)