Markus Armbruster <[email protected]> writes:
> Signed-off-by: Markus Armbruster <[email protected]>
> ---
[...]
> diff --git a/scripts/qapi/schema.py b/scripts/qapi/schema.py
> index c8bcfe2c49..e132442c04 100644
> --- a/scripts/qapi/schema.py
> +++ b/scripts/qapi/schema.py
[...]
> @@ -614,7 +614,7 @@ class
> QAPISchemaObjectTypeVariant(QAPISchemaObjectTypeMember):
> role = 'branch'
>
> def __init__(self, name, info, typ, ifcond=None):
> - QAPISchemaObjectTypeMember.__init__(self, name, info, typ,
> + super().__init__(name, info, typ,
> False, ifcond)
pycodestyle-3 gripes:
scripts/qapi/schema.py:618:45: E127 continuation line over-indented for
visual indent
Will fix.
[...]