summaryrefslogtreecommitdiff
path: root/mesonbuild/options.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2025-03-12 11:02:07 -0700
committerDylan Baker <dylan@pnwbakers.com>2025-04-08 10:00:16 -0700
commit390ea4624c2fbfecf831f1c7f34ec796ff410de7 (patch)
tree347a332c2730d923550ad590d271a6af1f0027d3 /mesonbuild/options.py
parent00864ca481c4e29d7f5c648a1e12b934dfa642d2 (diff)
downloadmeson-390ea4624c2fbfecf831f1c7f34ec796ff410de7.tar.gz
coredata: move MutableKeyedOptionDict to options
Diffstat (limited to 'mesonbuild/options.py')
-rw-r--r--mesonbuild/options.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/mesonbuild/options.py b/mesonbuild/options.py
index f45c121a8..3ad4f9155 100644
--- a/mesonbuild/options.py
+++ b/mesonbuild/options.py
@@ -41,6 +41,7 @@ if T.TYPE_CHECKING:
'UserIntegerOption', 'UserStdOption', 'UserStringArrayOption',
'UserStringOption', 'UserUmaskOption']
ElementaryOptionValues: TypeAlias = T.Union[str, int, bool, T.List[str]]
+ MutableKeyedOptionDictType: TypeAlias = T.Dict['OptionKey', AnyOptionType]
_OptionKeyTuple: TypeAlias = T.Tuple[T.Optional[str], MachineChoice, str]