]> Git Repo - qemu.git/commitdiff
python/qemu/machine.py: refactor _qemu_args()
authorVladimir Sementsov-Ogievskiy <[email protected]>
Tue, 24 Aug 2021 08:38:45 +0000 (11:38 +0300)
committerHanna Reitz <[email protected]>
Wed, 1 Sep 2021 12:03:47 +0000 (14:03 +0200)
 - use shorter construction
 - don't create new dict if not needed
 - drop extra unpacking key-val arguments
 - drop extra default values

Signed-off-by: Vladimir Sementsov-Ogievskiy <[email protected]>
Reviewed-by: Max Reitz <[email protected]>
Reviewed-by: John Snow <[email protected]>
Message-Id: <20210824083856[email protected]>
Signed-off-by: Hanna Reitz <[email protected]>
python/qemu/machine/machine.py

index 8b935813e9ec082ea87182099eaed5942e885824..3fde73cf108e5ea76741753f815a62c68db98fa7 100644 (file)
@@ -570,14 +570,12 @@ class QEMUMachine:
         return self._qmp_connection
 
     @classmethod
-    def _qmp_args(cls, _conv_keys: bool = True, **args: Any) -> Dict[str, Any]:
-        qmp_args = dict()
-        for key, value in args.items():
-            if _conv_keys:
-                qmp_args[key.replace('_', '-')] = value
-            else:
-                qmp_args[key] = value
-        return qmp_args
+    def _qmp_args(cls, conv_keys: bool,
+                  args: Dict[str, Any]) -> Dict[str, object]:
+        if conv_keys:
+            return {k.replace('_', '-'): v for k, v in args.items()}
+
+        return args
 
     def qmp(self, cmd: str,
             conv_keys: bool = True,
@@ -585,7 +583,7 @@ class QEMUMachine:
         """
         Invoke a QMP command and return the response dict
         """
-        qmp_args = self._qmp_args(conv_keys, **args)
+        qmp_args = self._qmp_args(conv_keys, args)
         return self._qmp.cmd(cmd, args=qmp_args)
 
     def command(self, cmd: str,
@@ -596,7 +594,7 @@ class QEMUMachine:
         On success return the response dict.
         On failure raise an exception.
         """
-        qmp_args = self._qmp_args(conv_keys, **args)
+        qmp_args = self._qmp_args(conv_keys, args)
         return self._qmp.command(cmd, **qmp_args)
 
     def get_qmp_event(self, wait: bool = False) -> Optional[QMPMessage]:
This page took 0.030646 seconds and 4 git commands to generate.