diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2022-03-15 00:19:27 -0400 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2022-04-14 18:37:04 -0400 |
commit | ea8f4bb4adf961366a30cc1fc2ab6ea65b0b3ee8 (patch) | |
tree | ecbe84cffb137db19fbddb03a5bce73069dd537f | |
parent | eb2551c90e6710e5216bb2b9d31a01546cf53cb4 (diff) | |
download | meson-ea8f4bb4adf961366a30cc1fc2ab6ea65b0b3ee8.zip meson-ea8f4bb4adf961366a30cc1fc2ab6ea65b0b3ee8.tar.gz meson-ea8f4bb4adf961366a30cc1fc2ab6ea65b0b3ee8.tar.bz2 |
typo
-rw-r--r-- | mesonbuild/interpreter/interpreterobjects.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/interpreter/interpreterobjects.py b/mesonbuild/interpreter/interpreterobjects.py index 6cc636b..a07d548 100644 --- a/mesonbuild/interpreter/interpreterobjects.py +++ b/mesonbuild/interpreter/interpreterobjects.py @@ -87,7 +87,7 @@ class FeatureOptionHolder(ObjectHolder[coredata.UserFeatureOption]): def __init__(self, option: coredata.UserFeatureOption, interpreter: 'Interpreter'): super().__init__(option, interpreter) if option and option.is_auto(): - # TODO: we need to case here because options is not a TypedDict + # TODO: we need to cast here because options is not a TypedDict self.held_object = T.cast('coredata.UserFeatureOption', self.env.coredata.options[OptionKey('auto_features')]) self.held_object.name = option.name self.methods.update({'enabled': self.enabled_method, |