jiridanek commented on a change in pull request #1279:
URL: https://github.com/apache/qpid-dispatch/pull/1279#discussion_r661387579



##########
File path: tests/management_test/schema.py
##########
@@ -22,19 +22,9 @@
 
 import unittest
 import json
-from collections import OrderedDict
 from qpid_dispatch_internal.management.schema import Schema, BooleanType, 
EnumType, AttributeType, ValidationError, EnumValue, EntityType
 
 
-def replace_od(thing):
-    """Replace OrderedDict with dict"""
-    if isinstance(thing, OrderedDict):
-        return dict((k, replace_od(v)) for k, v in thing.items())
-    if isinstance(thing, list):
-        return [replace_od(t) for t in thing]
-    return thing

Review comment:
       dead code




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to