diff options
author | Frediano Ziglio <fziglio@redhat.com> | 2015-07-21 17:45:35 +0100 |
---|---|---|
committer | Christophe Fergeau <cfergeau@redhat.com> | 2015-07-23 11:11:44 +0200 |
commit | 13aabda256b8a8342735b52fc3fb9e426f581dae (patch) | |
tree | 4a79e1130deb0820807838a279fa817b947767b4 | |
parent | 553be710677bd450b00abb4a95680b506bfcb574 (diff) |
codegen: Remove duplicate variable initialization
Signed-off-by: Frediano Ziglio <fziglio@redhat.com>
-rw-r--r-- | python_modules/spice_parser.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/python_modules/spice_parser.py b/python_modules/spice_parser.py index 80b559b..97af8b2 100644 --- a/python_modules/spice_parser.py +++ b/python_modules/spice_parser.py @@ -58,7 +58,6 @@ def SPICE_BNF(): uint64_ = Keyword("uint64").setParseAction(replaceWith(ptypes.uint64)) # keywords - channel_ = Keyword("channel") enum32_ = Keyword("enum32").setParseAction(replaceWith(32)) enum16_ = Keyword("enum16").setParseAction(replaceWith(16)) enum8_ = Keyword("enum8").setParseAction(replaceWith(8)) |