From 1a82880730e2d9f58eaa67179aa40c6976835278 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Mon, 2 Mar 2020 11:11:10 -0800 Subject: mesonbuild/mesonlib: Add type annotations --- mesonbuild/ast/introspection.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mesonbuild/ast/introspection.py') diff --git a/mesonbuild/ast/introspection.py b/mesonbuild/ast/introspection.py index c9a51bf..142c219 100644 --- a/mesonbuild/ast/introspection.py +++ b/mesonbuild/ast/introspection.py @@ -101,8 +101,8 @@ class IntrospectionInterpreter(AstInterpreter): self.coredata.merge_user_options(oi.options) def_opts = self.flatten_args(kwargs.get('default_options', [])) - self.project_default_options = mesonlib.stringlistify(def_opts) - self.project_default_options = cdata.create_options_dict(self.project_default_options) + _project_default_options = mesonlib.stringlistify(def_opts) + self.project_default_options = cdata.create_options_dict(_project_default_options) self.default_options.update(self.project_default_options) self.coredata.set_default_options(self.default_options, self.subproject, self.environment) -- cgit v1.1