Source code for evorl.envs.utils

[docs] 1def sort_dict(d: dict) -> dict: 2 return dict(sorted(d.items()))