Skip to content

Commit 1e39921

Browse files
committed
lint response
1 parent cca1dc2 commit 1e39921

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

mypyc/build.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@
4141
from mypyc.ir.pprint import format_modules
4242
from mypyc.namegen import exported_name
4343
from mypyc.options import CompilerOptions
44-
import mypyc.build_setup
44+
import mypyc.build_setup # noqa: F401
45+
4546

4647
class ModDesc(NamedTuple):
4748
module: str

mypyc/build_setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88

99
if sys.version_info >= (3, 12):
1010
# From setuptools' monkeypatch
11-
from distutils import ccompiler, sysconfig # type: ignore[import-not-found]
11+
from distutils import ccompiler # type: ignore[import-not-found]
1212
else:
13-
from distutils import ccompiler, sysconfig
13+
from distutils import ccompiler
1414

1515
EXTRA_FLAGS_PER_COMPILER_TYPE_PER_PATH_COMPONENT = {
1616
"unix": {

0 commit comments

Comments
 (0)