mirror of
https://github.com/mii443/qemu.git
synced 2025-08-23 15:48:20 +00:00
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>
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user