diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2021-10-19 20:08:41 -0400 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2021-10-26 20:53:43 -0400 |
commit | 81a2c1b36d91702d82234136ed1868c7118af322 (patch) | |
tree | 68c086b9d8ca5feee9ed168d561a0f447c0186f5 | |
parent | b1f0eec38f0da1966aaedc7cb1ec2a737e2b7c64 (diff) | |
download | meson-81a2c1b36d91702d82234136ed1868c7118af322.zip meson-81a2c1b36d91702d82234136ed1868c7118af322.tar.gz meson-81a2c1b36d91702d82234136ed1868c7118af322.tar.bz2 |
remove unused imports
-rwxr-xr-x | run_unittests.py | 2 | ||||
-rwxr-xr-x | tools/build_website.py | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/run_unittests.py b/run_unittests.py index bc20b22..ad62823 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -30,11 +30,9 @@ import mesonbuild.dependencies.factory import mesonbuild.compilers import mesonbuild.envconfig import mesonbuild.environment -import mesonbuild.mesonlib import mesonbuild.coredata import mesonbuild.modules.gnome from mesonbuild.mesonlib import python_command, setup_vsenv -import mesonbuild.dependencies.base import mesonbuild.modules.pkgconfig from unittests.allplatformstests import AllPlatformTests diff --git a/tools/build_website.py b/tools/build_website.py index 50dfc48..77a049c 100755 --- a/tools/build_website.py +++ b/tools/build_website.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -import os, sys, subprocess, shutil +import os, subprocess, shutil assert os.getcwd() == '/home/jpakkane' |