Message ID | 20201026213637.47087-2-jsnow@redhat.com |
---|---|
State | Accepted |
Commit | b7341b89c9c0212fef7b38b04ffaf39ea73bfca9 |
Headers | show |
Series | qapi: static typing conversion, pt3 | expand |
diff --git a/scripts/qapi/expr.py b/scripts/qapi/expr.py index 2fcaaa2497a8..35695c4c653b 100644 --- a/scripts/qapi/expr.py +++ b/scripts/qapi/expr.py @@ -104,7 +104,7 @@ def check_flags(expr, info): def check_if(expr, info, source): - def check_if_str(ifcond, info): + def check_if_str(ifcond): if not isinstance(ifcond, str): raise QAPISemError( info, @@ -124,9 +124,9 @@ def check_if_str(ifcond, info): raise QAPISemError( info, "'if' condition [] of %s is useless" % source) for elt in ifcond: - check_if_str(elt, info) + check_if_str(elt) else: - check_if_str(ifcond, info) + check_if_str(ifcond) expr['if'] = [ifcond]