diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2023-02-15 23:37:34 -0500 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2023-02-22 10:32:09 -0800 |
commit | 6719724c7c6ddecba60cc27f60a07862bb707615 (patch) | |
tree | 0a6dc4ee63786419f9878e68494f371e8e448333 | |
parent | ee41de6d5bd24c289a73944279be60f752f45935 (diff) | |
download | meson-6719724c7c6ddecba60cc27f60a07862bb707615.zip meson-6719724c7c6ddecba60cc27f60a07862bb707615.tar.gz meson-6719724c7c6ddecba60cc27f60a07862bb707615.tar.bz2 |
remove pointless, unused typing-only import in the test runner
In the commit that originally added this import, it wasn't even used.
Now the implementation is being moved, so it will fail to work.
I do not know why I originally added it, but it needs to go. :)
-rwxr-xr-x | run_project_tests.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index 5caedbe..75665ba 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -63,7 +63,6 @@ if T.TYPE_CHECKING: from mesonbuild.environment import Environment from mesonbuild._typing import Protocol from concurrent.futures import Future - from mesonbuild.modules.python import PythonIntrospectionDict class CompilerArgumentType(Protocol): cross_file: str |