aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalf Gommers <ralf.gommers@gmail.com>2021-05-02 10:18:23 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2021-05-02 22:27:40 +0300
commita48a89374a57297420863bd9fa3c2ef2e4a6a064 (patch)
tree1762dcb04d603f10b75dab10bb86ac2d989bf805
parentd0325c898ad7f16dc9e22389d365a33097b80af8 (diff)
downloadmeson-a48a89374a57297420863bd9fa3c2ef2e4a6a064.zip
meson-a48a89374a57297420863bd9fa3c2ef2e4a6a064.tar.gz
meson-a48a89374a57297420863bd9fa3c2ef2e4a6a064.tar.bz2
Clean up unused imports
-rw-r--r--mesonbuild/compilers/objc.py3
-rw-r--r--mesonbuild/compilers/objcpp.py3
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