qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [RFC PATCH 07/32] qapi: Drop superfluous allow_optional=Tru


From: Markus Armbruster
Subject: [Qemu-devel] [RFC PATCH 07/32] qapi: Drop superfluous allow_optional=True
Date: Mon, 2 Oct 2017 17:25:27 +0200

check_command() passes allow_optional=True to check_type().  Useless
unless you also pass allow_dict=True, which check_command() doesn't.
Drop the superfluous argument.

Signed-off-by: Markus Armbruster <address@hidden>
---
 scripts/qapi.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/qapi.py b/scripts/qapi.py
index 43a54bf40f..248af89b0b 100644
--- a/scripts/qapi.py
+++ b/scripts/qapi.py
@@ -695,7 +695,7 @@ def check_command(expr, info):
         returns_meta += ['built-in', 'alternate', 'enum']
     check_type(info, "'returns' for command '%s'" % name,
                expr.get('returns'), allow_array=True,
-               allow_optional=True, allow_metas=returns_meta)
+               allow_metas=returns_meta)
 
 
 def check_event(expr, info):
-- 
2.13.6




reply via email to

[Prev in Thread] Current Thread [Next in Thread]