Skip to content

Commit a1d1dc1

Browse files
committed
refactor(linkify_issues): Import typing as namespace
1 parent 2669e0a commit a1d1dc1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/linkify_issues.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import re
2-
from typing import TypedDict
2+
import typing as t
33

44
from docutils import nodes
55
from sphinx.application import Sphinx
@@ -57,7 +57,7 @@ def condition(node: nodes.Node) -> bool:
5757
node.parent.replace(node, retnodes)
5858

5959

60-
class SetupDict(TypedDict):
60+
class SetupDict(t.TypedDict):
6161
version: str
6262
parallel_read_safe: bool
6363
parallel_write_safe: bool

0 commit comments

Comments
 (0)