From: Markus Armbruster Date: Wed, 5 Nov 2025 15:22:19 +0000 (+0100) Subject: qapi/parser: Mollify mypy X-Git-Tag: v10.2.0-rc1~15^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1ca08107c54227580786527db28fb77440f62391;p=thirdparty%2Fqemu.git qapi/parser: Mollify mypy re.match(r'^ *', ...) can't fail, but mypy doesn't know that and complains: scripts/qapi/parser.py:444: error: Item "None" of "Match[str] | None" has no attribute "end" [union-attr] Work around by using must_match() instead. Fixes: 8107ba47fd78 (qapi: Add documentation format validation) Signed-off-by: Markus Armbruster Reviewed-by: Vladimir Sementsov-Ogievskiy Signed-off-by: Richard Henderson Message-ID: <20251105152219.311154-1-armbru@redhat.com> --- diff --git a/scripts/qapi/parser.py b/scripts/qapi/parser.py index 1bb1af7051..c3cf33904e 100644 --- a/scripts/qapi/parser.py +++ b/scripts/qapi/parser.py @@ -441,7 +441,7 @@ class QAPISchemaParser: self._literal_mode = True self._literal_mode_indent = 0 elif self._literal_mode and line: - indent = re.match(r'^ *', line).end() + indent = must_match(r'\s*', line).end() if self._literal_mode_indent == 0: self._literal_mode_indent = indent elif indent < self._literal_mode_indent: