diff options
author | Markus Armbruster <armbru@redhat.com> | 2021-08-31 14:37:59 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2021-09-03 17:09:10 +0200 |
commit | e46c930cdd68a3911ec16bd89379891c5473dd06 (patch) | |
tree | a42c5dc0963cac8abae4501f9208e9eaf3dc8c42 /scripts/qapi/schema.py | |
parent | 1889e57a7140c4f89c8fd9a217f8c3845eb48b5b (diff) | |
download | qemu-e46c930cdd68a3911ec16bd89379891c5473dd06.zip qemu-e46c930cdd68a3911ec16bd89379891c5473dd06.tar.gz qemu-e46c930cdd68a3911ec16bd89379891c5473dd06.tar.bz2 |
qapi: Simplify how QAPISchemaIfCond represents "no condition"
None works fine, there is no need to replace it by {} in .__init__().
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20210831123809.1107782-3-armbru@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Diffstat (limited to 'scripts/qapi/schema.py')
-rw-r--r-- | scripts/qapi/schema.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/qapi/schema.py b/scripts/qapi/schema.py index 1451cde..3d72c7d 100644 --- a/scripts/qapi/schema.py +++ b/scripts/qapi/schema.py @@ -34,7 +34,7 @@ from .parser import QAPISchemaParser class QAPISchemaIfCond: def __init__(self, ifcond=None): - self.ifcond = ifcond or {} + self.ifcond = ifcond def _cgen(self): return cgen_ifcond(self.ifcond) |