diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2022-10-30 13:22:44 -0400 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2023-02-06 23:42:43 +0530 |
commit | e1b98a89b566cc983b43c12fabc050c707d9e36b (patch) | |
tree | 49b4e1805c8dce4abf8bbc1b2c2472c0b3a51a9b /mesonbuild | |
parent | 07338ab113396cd1a7e0cc7f80d25e0185a816fe (diff) | |
download | meson-e1b98a89b566cc983b43c12fabc050c707d9e36b.zip meson-e1b98a89b566cc983b43c12fabc050c707d9e36b.tar.gz meson-e1b98a89b566cc983b43c12fabc050c707d9e36b.tar.bz2 |
remove unneeded type comment
Diffstat (limited to 'mesonbuild')
-rw-r--r-- | mesonbuild/compilers/compilers.py | 2 |
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') |