We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 271c7e3 + 55eb7f6 commit 5a1c216Copy full SHA for 5a1c216
src/DIRAC/Core/Utilities/DEncode.py
@@ -489,7 +489,7 @@ def encodeDict(dValue, eList):
489
printDebugCallstack("Encoding dict with numeric keys")
490
491
eList.append(b"d")
492
- for key in sorted(dValue):
+ for key in dValue:
493
g_dEncodeFunctions[type(key)](key, eList)
494
g_dEncodeFunctions[type(dValue[key])](dValue[key], eList)
495
eList.append(b"e")
0 commit comments