aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2022-10-30 13:22:44 -0400
committerNirbheek Chauhan <nirbheek@centricular.com>2023-02-19 02:55:57 +0530
commitad01ab2d2baf4216a5294b9c3869dca5b5d885dd (patch)
treea84c3be0c63c9a958c7935d3a3b997576df4bec3
parent45ae4c920619864be95e2051e447e65c26a9cec8 (diff)
downloadmeson-ad01ab2d2baf4216a5294b9c3869dca5b5d885dd.zip
meson-ad01ab2d2baf4216a5294b9c3869dca5b5d885dd.tar.gz
meson-ad01ab2d2baf4216a5294b9c3869dca5b5d885dd.tar.bz2
remove unneeded type comment
-rw-r--r--mesonbuild/compilers/compilers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py
index 771d543..c5a51cb 100644
--- a/mesonbuild/compilers/compilers.py
+++ b/mesonbuild/compilers/compilers.py
@@ -847,7 +847,7 @@ class Compiler(HoldableObject, metaclass=abc.ABCMeta):
# Check if not cached, and generate, otherwise get from the cache
if key in cdata.compiler_check_cache:
- p = cdata.compiler_check_cache[key] # type: CompileResult
+ p = cdata.compiler_check_cache[key]
p.cached = True
mlog.debug('Using cached compile:')
mlog.debug('Cached command line: ', ' '.join(p.command), '\n')