summaryrefslogtreecommitdiffhomepage
path: root/tools/pyang_plugins/ryu.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/pyang_plugins/ryu.py')
-rw-r--r--tools/pyang_plugins/ryu.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/pyang_plugins/ryu.py b/tools/pyang_plugins/ryu.py
index 9c0fed09..1a1cb960 100644
--- a/tools/pyang_plugins/ryu.py
+++ b/tools/pyang_plugins/ryu.py
@@ -153,7 +153,7 @@ def generate_type_name(s):
except AttributeError:
pass
s.i_ryu_class_name = name = _generate_type_name(s)
- assert (not name in _classes) or same_class_def(_classes[name], s)
+ assert (name not in _classes) or same_class_def(_classes[name], s)
_classes[name] = s
return name