Skip to content

Commit 2347f63

Browse files
cehroot
authored and
root
committed
Remove unused imports in build module (python#5693)
1 parent 23c370c commit 2347f63

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

mypy/build.py

+1-6
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,18 @@
1111
# TODO: More consistent terminology, e.g. path/fnam, module/id, state/file
1212

1313
import binascii
14-
import collections
1514
import contextlib
16-
from distutils.sysconfig import get_python_lib
17-
import functools
1815
import gc
1916
import hashlib
2017
import json
2118
import os
22-
import pathlib
2319
import re
24-
import site
2520
import stat
2621
import sys
2722
import time
2823
import errno
2924

30-
from typing import (AbstractSet, Any, cast, Dict, Iterable, Iterator, List,
25+
from typing import (AbstractSet, Any, Dict, Iterable, Iterator, List,
3126
Mapping, NamedTuple, Optional, Set, Tuple, Union, Callable)
3227
MYPY = False
3328
if MYPY:

0 commit comments

Comments
 (0)