diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2022-01-20 11:06:04 -0800 |
|---|---|---|
| committer | Eli Schwartz <eschwartz93@gmail.com> | 2022-01-28 15:53:20 -0500 |
| commit | 029652ecb5da390ff3acc71ab98c9d53b2aa1a12 (patch) | |
| tree | 75379187f95484f85efb9b73a9c9d37382e93405 | |
| parent | 457fb53ea46ee06796261d69f966fb9325ebcd3c (diff) | |
| download | meson-029652ecb5da390ff3acc71ab98c9d53b2aa1a12.tar.gz | |
modules/gnome: remove unnecessary type check
This should have been removed when typed_kwargs was added
| -rw-r--r-- | mesonbuild/modules/gnome.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py index a3df14b4d..b7427b644 100644 --- a/mesonbuild/modules/gnome.py +++ b/mesonbuild/modules/gnome.py @@ -1630,9 +1630,6 @@ class GnomeModule(ExtensionModule): if kwargs['docbook'] is not None: docbook = kwargs['docbook'] - if not isinstance(docbook, str): - raise MesonException('docbook value must be a string.') - # The docbook output is always ${docbook}-${name_of_xml_file} output = namebase + '-docbook' outputs = [] |
