diff options
author | John Snow <jsnow@redhat.com> | 2020-10-09 12:15:39 -0400 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2020-10-10 11:37:48 +0200 |
commit | e6a34cd7a440e6ba04251612aa6eb036d3c47d98 (patch) | |
tree | d5ce7d98672466a86b260273a3a93d509af225b4 /scripts/qapi/commands.py | |
parent | 1cc7398dfa30fffbb23b79ff7cacea18b3c9b674 (diff) | |
download | qemu-e6a34cd7a440e6ba04251612aa6eb036d3c47d98.zip qemu-e6a34cd7a440e6ba04251612aa6eb036d3c47d98.tar.gz qemu-e6a34cd7a440e6ba04251612aa6eb036d3c47d98.tar.bz2 |
qapi/common.py: move build_params into gen.py
Including it in common.py creates a circular import dependency; schema
relies on common, but common.build_params requires a type annotation
from schema. To type this properly, it needs to be moved outside the
cycle.
Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: Cleber Rosa <crosa@redhat.com>
Message-Id: <20201009161558.107041-18-jsnow@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'scripts/qapi/commands.py')
-rw-r--r-- | scripts/qapi/commands.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/scripts/qapi/commands.py b/scripts/qapi/commands.py index cde0c1e..88ba11c 100644 --- a/scripts/qapi/commands.py +++ b/scripts/qapi/commands.py @@ -13,8 +13,13 @@ This work is licensed under the terms of the GNU GPL, version 2. See the COPYING file in the top-level directory. """ -from .common import build_params, c_name, mcgen -from .gen import QAPIGenCCode, QAPISchemaModularCVisitor, ifcontext +from .common import c_name, mcgen +from .gen import ( + QAPIGenCCode, + QAPISchemaModularCVisitor, + build_params, + ifcontext, +) def gen_command_decl(name, arg_type, boxed, ret_type): |