remove unneeded type comment

This commit is contained in:
Eli Schwartz 2022-10-30 13:22:44 -04:00
parent c9ac73a4da
commit 1000246d07
No known key found for this signature in database
GPG Key ID: CEB167EFB5722BD6
1 changed files with 1 additions and 1 deletions

View File

@ -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')