aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/modules/gnome.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2022-05-23 13:51:51 -0700
committerEli Schwartz <eschwartz93@gmail.com>2022-05-25 22:41:03 -0400
commit9c9be9d74bea4b4aad75437c733b8fcc4e902796 (patch)
tree6b3b2afcbe4bf8ab65ab2f99c22c737274b46023 /mesonbuild/modules/gnome.py
parent764b3bf3277770df238e1c6d5d9bc26e56276868 (diff)
downloadmeson-9c9be9d74bea4b4aad75437c733b8fcc4e902796.zip
meson-9c9be9d74bea4b4aad75437c733b8fcc4e902796.tar.gz
meson-9c9be9d74bea4b4aad75437c733b8fcc4e902796.tar.bz2
modules/gnome: Fix missing type annotation
Diffstat (limited to 'mesonbuild/modules/gnome.py')
-rw-r--r--mesonbuild/modules/gnome.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py
index 6d0da87..3d56735 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: