fib: fib api updates
[vpp.git] / src / tools / vppapigen / vppapigen.py
index fd87b18..576fa54 100755 (executable)
@@ -23,8 +23,6 @@ global_types = {}
 def global_type_add(name, obj):
     '''Add new type to the dictionary of types '''
     type_name = 'vl_api_' + name + '_t'
-    if type_name in global_types:
-        raise KeyError('Type is already defined: {}'.format(name))
     global_types[type_name] = obj