diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2022-05-23 13:51:51 -0700 |
---|---|---|
committer | Eli Schwartz <eschwartz93@gmail.com> | 2022-05-25 22:41:03 -0400 |
commit | 9c9be9d74bea4b4aad75437c733b8fcc4e902796 (patch) | |
tree | 6b3b2afcbe4bf8ab65ab2f99c22c737274b46023 /mesonbuild/modules/gnome.py | |
parent | 764b3bf3277770df238e1c6d5d9bc26e56276868 (diff) | |
download | meson-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.py | 2 |
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: |