aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/environment.py
diff options
context:
space:
mode:
authorMichael Hirsch, Ph.D <scivision@users.noreply.github.com>2019-04-09 13:38:37 -0400
committerMichael Hirsch, Ph.D <scivision@users.noreply.github.com>2019-04-27 23:19:01 -0400
commitefff0046512744969d7fa000da1dfab3bf29ad63 (patch)
treebfd59bf14fd147d74f99a015aff30231c6087492 /mesonbuild/environment.py
parent1c70bae952b511b1fc36ef7a3d7c06fe86911d7c (diff)
downloadmeson-efff0046512744969d7fa000da1dfab3bf29ad63.zip
meson-efff0046512744969d7fa000da1dfab3bf29ad63.tar.gz
meson-efff0046512744969d7fa000da1dfab3bf29ad63.tar.bz2
cleanup unused imports PEP8
Diffstat (limited to 'mesonbuild/environment.py')
-rw-r--r--mesonbuild/environment.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py
index fa3d965..697b596 100644
--- a/mesonbuild/environment.py
+++ b/mesonbuild/environment.py
@@ -12,14 +12,13 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-import configparser, os, platform, re, sys, shlex, shutil, subprocess
-import typing
+import os, platform, re, sys, shlex, shutil, subprocess
from . import coredata
from .linkers import ArLinker, ArmarLinker, VisualStudioLinker, DLinker, CcrxLinker
from . import mesonlib
from .mesonlib import (
- MesonException, EnvironmentException, MachineChoice, PerMachine, Popen_safe,
+ MesonException, EnvironmentException, MachineChoice, Popen_safe,
)
from . import mlog
@@ -38,7 +37,6 @@ from .compilers import (
is_source,
)
from .compilers import (
- Compiler,
ArmCCompiler,
ArmCPPCompiler,
ArmclangCCompiler,