Skip to content

Commit

Permalink
Merge pull request #6 from nhamilakis/main
Browse files Browse the repository at this point in the history
Removed the sorting of keys in Unparsing
  • Loading branch information
sfermigier authored Jan 5, 2024
2 parents 0cccd27 + 60f4d75 commit d226b2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ldif.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def _unparse_entry_record(self, entry):
:type entry: Dict[string, List[string]]
:param entry: Dictionary holding an entry
"""
for attr_type in sorted(entry.keys()):
for attr_type in entry.keys():
for attr_value in entry[attr_type]:
self._unparse_attr(attr_type, attr_value)

Expand Down

0 comments on commit d226b2e

Please sign in to comment.