mirror of https://github.com/xemu-project/xemu.git
python/qemu/qmp/legacy: cmd(): drop cmd_id unused argument
The argument is unused, let's drop it for now, as we are going to refactor the interface and don't want to refactor unused things. Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru> Reviewed-by: Eric Blake <eblake@redhat.com> Message-id: 20231006154125.1068348-2-vsementsov@yandex-team.ru Signed-off-by: John Snow <jsnow@redhat.com>
This commit is contained in:
parent
19a39e270b
commit
f187cfefd2
|
@ -195,20 +195,16 @@ class QEMUMonitorProtocol:
|
||||||
)
|
)
|
||||||
|
|
||||||
def cmd(self, name: str,
|
def cmd(self, name: str,
|
||||||
args: Optional[Dict[str, object]] = None,
|
args: Optional[Dict[str, object]] = None) -> QMPMessage:
|
||||||
cmd_id: Optional[object] = None) -> QMPMessage:
|
|
||||||
"""
|
"""
|
||||||
Build a QMP command and send it to the QMP Monitor.
|
Build a QMP command and send it to the QMP Monitor.
|
||||||
|
|
||||||
:param name: command name (string)
|
:param name: command name (string)
|
||||||
:param args: command arguments (dict)
|
:param args: command arguments (dict)
|
||||||
:param cmd_id: command id (dict, list, string or int)
|
|
||||||
"""
|
"""
|
||||||
qmp_cmd: QMPMessage = {'execute': name}
|
qmp_cmd: QMPMessage = {'execute': name}
|
||||||
if args:
|
if args:
|
||||||
qmp_cmd['arguments'] = args
|
qmp_cmd['arguments'] = args
|
||||||
if cmd_id:
|
|
||||||
qmp_cmd['id'] = cmd_id
|
|
||||||
return self.cmd_obj(qmp_cmd)
|
return self.cmd_obj(qmp_cmd)
|
||||||
|
|
||||||
def command(self, cmd: str, **kwds: object) -> QMPReturnValue:
|
def command(self, cmd: str, **kwds: object) -> QMPReturnValue:
|
||||||
|
|
Loading…
Reference in New Issue