From 1b19822a2df7ff969e3734973f131df9ed9d2ee3 Mon Sep 17 00:00:00 2001 From: Daniel Mensinger Date: Tue, 1 Sep 2020 14:27:10 +0200 Subject: typing: Fix templates --- mesonbuild/templates/mesontemplates.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'mesonbuild/templates/mesontemplates.py') diff --git a/mesonbuild/templates/mesontemplates.py b/mesonbuild/templates/mesontemplates.py index 6b341a2..68f9769 100644 --- a/mesonbuild/templates/mesontemplates.py +++ b/mesonbuild/templates/mesontemplates.py @@ -12,6 +12,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +import argparse + meson_executable_template = '''project('{project_name}', '{language}', version : '{version}', default_options : [{default_options}]) @@ -33,7 +35,7 @@ jar('{executable}', ''' -def create_meson_build(options): +def create_meson_build(options: argparse.Namespace) -> None: if options.type != 'executable': raise SystemExit('\nGenerating a meson.build file from existing sources is\n' 'supported only for project type "executable".\n' -- cgit v1.1