diff options
author | Elliott Sales de Andrade <quantum.analyst@gmail.com> | 2017-05-17 03:42:16 -0400 |
---|---|---|
committer | Elliott Sales de Andrade <quantum.analyst@gmail.com> | 2017-05-17 03:42:16 -0400 |
commit | 65b1d339310b2e8d7304d9b2f394bfb968b6c55b (patch) | |
tree | 928e5bd34fcd03cedffb09fdb3f59ff12666577c /mesonbuild/environment.py | |
parent | abd12b69eab4340eb5705a57e86ea254854cec24 (diff) | |
download | meson-65b1d339310b2e8d7304d9b2f394bfb968b6c55b.zip meson-65b1d339310b2e8d7304d9b2f394bfb968b6c55b.tar.gz meson-65b1d339310b2e8d7304d9b2f394bfb968b6c55b.tar.bz2 |
Remove unused imports.
Diffstat (limited to 'mesonbuild/environment.py')
-rw-r--r-- | mesonbuild/environment.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py index 13bbe62..c34b2e7 100644 --- a/mesonbuild/environment.py +++ b/mesonbuild/environment.py @@ -12,10 +12,10 @@ # See the License for the specific language governing permissions and # limitations under the License. -import os, re, subprocess, platform -from . import coredata -from . import mesonlib -from . import mlog +import os +import platform +import re + from .compilers import * from .mesonlib import EnvironmentException, Popen_safe import configparser |