From 9c9be9d74bea4b4aad75437c733b8fcc4e902796 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Mon, 23 May 2022 13:51:51 -0700 Subject: [PATCH] modules/gnome: Fix missing type annotation --- mesonbuild/modules/gnome.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py index 6d0da87bf..3d567354a 100644 --- a/mesonbuild/modules/gnome.py +++ b/mesonbuild/modules/gnome.py @@ -254,7 +254,7 @@ def annotations_validator(annotations: T.List[T.Union[str, T.List[str]]]) -> T.O # https://bugzilla.gnome.org/show_bug.cgi?id=774368 gresource_dep_needed_version = '>= 2.51.1' -native_glib_version = None +native_glib_version: T.Optional[str] = None class GnomeModule(ExtensionModule): def __init__(self, interpreter: 'Interpreter') -> None: