##// END OF EJS Templates
typing: hide the interface version of `dirstate` during type checking...
Matt Harbison -
r53087:45270e28 default
parent child Browse files
Show More
@@ -10,6 +10,7 b' import collections'
10 import contextlib
10 import contextlib
11 import os
11 import os
12 import stat
12 import stat
13 import typing
13 import uuid
14 import uuid
14
15
15 from .i18n import _
16 from .i18n import _
@@ -1809,3 +1810,6 b' class DirState:'
1809
1810
1810
1811
1811 dirstate = interfaceutil.implementer(intdirstate.idirstate)(DirState)
1812 dirstate = interfaceutil.implementer(intdirstate.idirstate)(DirState)
1813
1814 if typing.TYPE_CHECKING:
1815 dirstate = DirState
General Comments 0
You need to be logged in to leave comments. Login now