From a48a89374a57297420863bd9fa3c2ef2e4a6a064 Mon Sep 17 00:00:00 2001 From: Ralf Gommers Date: Sun, 2 May 2021 10:18:23 +0200 Subject: Clean up unused imports --- mesonbuild/compilers/objc.py | 3 +-- mesonbuild/compilers/objcpp.py | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/mesonbuild/compilers/objc.py b/mesonbuild/compilers/objc.py index 7d19e52..32f17ff 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 fdd9762..003da54 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 -- cgit v1.1