This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import operator | |
import sys | |
import yaml | |
from typing import Any, Callable, Dict, Union | |
def deep_sort(obj: dict, sorters: Dict[str, Callable] = None) -> Union[dict, list, Any]: | |
sorters = sorters or {} | |
result: Any = obj |