diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-07-18 19:17:16 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-07-18 23:43:29 +0300 |
commit | bc0f510ef197cb19f77801ae43b33deb53e6391f (patch) | |
tree | a287afa3bc8e7ff8067a69364c91ef00dd332c8f /mesonbuild/compilers/compilers.py | |
parent | 76b1f4f8cbca916d7b4798f5b13907b1769117da (diff) | |
download | meson-bc0f510ef197cb19f77801ae43b33deb53e6391f.zip meson-bc0f510ef197cb19f77801ae43b33deb53e6391f.tar.gz meson-bc0f510ef197cb19f77801ae43b33deb53e6391f.tar.bz2 |
fix all flake8 issues
Diffstat (limited to 'mesonbuild/compilers/compilers.py')
-rw-r--r-- | mesonbuild/compilers/compilers.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py index 76c5c5e..71d96d4 100644 --- a/mesonbuild/compilers/compilers.py +++ b/mesonbuild/compilers/compilers.py @@ -12,9 +12,8 @@ # See the License for the specific language governing permissions and # limitations under the License. -import abc, contextlib, enum, os.path, re, tempfile, shlex -from typing import List, Optional, Tuple -from pathlib import Path +import contextlib, enum, os.path, re, tempfile, shlex +from typing import Optional, Tuple from ..linkers import StaticLinker from .. import coredata @@ -22,7 +21,7 @@ from .. import mlog from .. import mesonlib from ..mesonlib import ( EnvironmentException, MachineChoice, MesonException, OrderedSet, - version_compare, Popen_safe + Popen_safe ) from ..envconfig import ( Properties, |