We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66e526e commit efa2fabCopy full SHA for efa2fab
build_docs.py
@@ -33,7 +33,6 @@
33
import sys
34
from argparse import ArgumentParser, Namespace
35
from bisect import bisect_left as bisect
36
-from collections.abc import Iterable, Sequence
37
from contextlib import contextmanager, suppress
38
from dataclasses import dataclass
39
from datetime import datetime as dt
@@ -51,6 +50,10 @@
51
50
import urllib3
52
import zc.lockfile
53
+TYPE_CHECKING = False
54
+if TYPE_CHECKING:
55
+ from collections.abc import Iterable, Sequence
56
+
57
try:
58
from os import EX_OK
59
from os import EX_SOFTWARE as EX_FAILURE
0 commit comments