aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2020-06-16 11:33:02 -0700
committerDylan Baker <dylan@pnwbakers.com>2020-08-01 22:00:06 -0700
commite981798e0b5ccb53cdb94a616c9bccc20f091e6b (patch)
treee682054e774997bf90f852078170b4faafb09517
parent1ca17dc853ece6225a46b46330e436d46d74bc4b (diff)
downloadmeson-e981798e0b5ccb53cdb94a616c9bccc20f091e6b.zip
meson-e981798e0b5ccb53cdb94a616c9bccc20f091e6b.tar.gz
meson-e981798e0b5ccb53cdb94a616c9bccc20f091e6b.tar.bz2
coredata: fix type annotation
-rw-r--r--mesonbuild/coredata.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/coredata.py b/mesonbuild/coredata.py
index b7efe30..e3b6dab 100644
--- a/mesonbuild/coredata.py
+++ b/mesonbuild/coredata.py
@@ -374,7 +374,7 @@ class CoreData:
self.compiler_options = PerMachine(
defaultdict(dict),
defaultdict(dict),
- ) # : PerMachine[T.defaultdict[str, OptionDictType]]
+ ) # type: PerMachine[T.defaultdict[str, OptionDictType]]
self.base_options = {} # type: OptionDictType
self.cross_files = self.__load_config_files(options, scratch_dir, 'cross')
self.compilers = PerMachine(OrderedDict(), OrderedDict())