diff options
author | John Snow <jsnow@redhat.com> | 2023-02-14 19:00:10 -0500 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2023-02-23 13:01:45 +0100 |
commit | 67a81f9fb78d73398051fed0df7a0aac5b61b7c5 (patch) | |
tree | a8282907c68ab25b8d698bfd5e3dd0e5bf8d75a1 /scripts/qapi/parser.py | |
parent | 420110591c54f5fd38e065d5bddac73b3076bf9e (diff) |
qapi: remove _JSONObject
We can remove this alias as it only has two usages now, and no longer
pays for the confusion of "yet another type".
Signed-off-by: John Snow <jsnow@redhat.com>
Message-Id: <20230215000011.1725012-6-jsnow@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'scripts/qapi/parser.py')
-rw-r--r-- | scripts/qapi/parser.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/scripts/qapi/parser.py b/scripts/qapi/parser.py index 50906e27d4..d570086e1a 100644 --- a/scripts/qapi/parser.py +++ b/scripts/qapi/parser.py @@ -42,9 +42,8 @@ if TYPE_CHECKING: _ExprValue = Union[List[object], Dict[str, object], str, bool] -# FIXME: Consolidate and centralize definitions for _ExprValue, -# JSONValue, and _JSONObject; currently scattered across several -# modules. +# FIXME: Consolidate and centralize definitions for _ExprValue and +# JSONValue; currently scattered across several modules. class QAPIExpression(Dict[str, object]): |