Skip to content

Commit

Permalink
Black
Browse files Browse the repository at this point in the history
  • Loading branch information
JukkaL committed Jul 3, 2023
1 parent ea64a4d commit 8b214be
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions mypyc/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,11 @@
else:
import setuptools
from setuptools import Extension
from setuptools._distutils import ccompiler as _ccompiler # type: ignore[attr-defined]
from setuptools._distutils import sysconfig as _sysconfig # type: ignore[attr-defined]
from setuptools._distutils import (
ccompiler as _ccompiler, # type: ignore[attr-defined]
sysconfig as _sysconfig, # type: ignore[attr-defined]
)

ccompiler = _ccompiler
sysconfig = _sysconfig

Expand Down

0 comments on commit 8b214be

Please sign in to comment.