aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2022-01-20 11:06:04 -0800
committerEli Schwartz <eschwartz93@gmail.com>2022-01-28 15:53:20 -0500
commit029652ecb5da390ff3acc71ab98c9d53b2aa1a12 (patch)
tree75379187f95484f85efb9b73a9c9d37382e93405 /mesonbuild
parent457fb53ea46ee06796261d69f966fb9325ebcd3c (diff)
downloadmeson-029652ecb5da390ff3acc71ab98c9d53b2aa1a12.zip
meson-029652ecb5da390ff3acc71ab98c9d53b2aa1a12.tar.gz
meson-029652ecb5da390ff3acc71ab98c9d53b2aa1a12.tar.bz2
modules/gnome: remove unnecessary type check
This should have been removed when typed_kwargs was added
Diffstat (limited to 'mesonbuild')
-rw-r--r--mesonbuild/modules/gnome.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py
index a3df14b..b7427b6 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 = []