diff --git a/mesonbuild/compilers/objc.py b/mesonbuild/compilers/objc.py index 7d19e52c7..32f17ff45 100644 --- a/mesonbuild/compilers/objc.py +++ b/mesonbuild/compilers/objc.py @@ -12,10 +12,9 @@ # See the License for the specific language governing permissions and # limitations under the License. -import os.path, subprocess import typing as T -from ..mesonlib import EnvironmentException, MachineChoice +from ..mesonlib import MachineChoice from .compilers import Compiler from .mixins.clike import CLikeCompiler diff --git a/mesonbuild/compilers/objcpp.py b/mesonbuild/compilers/objcpp.py index fdd9762f7..003da54dd 100644 --- a/mesonbuild/compilers/objcpp.py +++ b/mesonbuild/compilers/objcpp.py @@ -12,10 +12,9 @@ # See the License for the specific language governing permissions and # limitations under the License. -import os.path, subprocess import typing as T -from ..mesonlib import EnvironmentException, MachineChoice +from ..mesonlib import MachineChoice from .mixins.clike import CLikeCompiler from .compilers import Compiler