diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2020-10-03 21:25:04 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-03 21:25:04 -0700 |
commit | 10b44584ff0b1f49ece260a48f89eb59c123616f (patch) | |
tree | 3bc4f127fe0ecfc81aed2d871820efa1aa133138 /mesonbuild/mintro.py | |
parent | 264939963f696cbf768b1d7c8011d72a8064323f (diff) | |
parent | 2fe400c350a49930c3fbe86602efa9e0950bb1cb (diff) | |
download | meson-10b44584ff0b1f49ece260a48f89eb59c123616f.zip meson-10b44584ff0b1f49ece260a48f89eb59c123616f.tar.gz meson-10b44584ff0b1f49ece260a48f89eb59c123616f.tar.bz2 |
Merge pull request #7795 from dcbaker/submit/full-compiler-annotations
Full annotations for the Compiler package
Diffstat (limited to 'mesonbuild/mintro.py')
-rw-r--r-- | mesonbuild/mintro.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/mintro.py b/mesonbuild/mintro.py index 66bbe2a..f7cbf80 100644 --- a/mesonbuild/mintro.py +++ b/mesonbuild/mintro.py @@ -220,7 +220,7 @@ def list_buildoptions(coredata: cdata.CoreData, subprojects: T.Optional[T.List[s sub_core_options[sub + ':' + k] = o core_options.update(sub_core_options) - def add_keys(options: T.Dict[str, cdata.UserOption], section: str, machine: str = 'any') -> None: + def add_keys(options: 'cdata.OptionDictType', section: str, machine: str = 'any') -> None: for key in sorted(options.keys()): opt = options[key] optdict = {'name': key, 'value': opt.value, 'section': section, 'machine': machine} |