X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;f=dict_utils.py;h=79c86edf286f2c9ea9983906385365199be74892;hb=36fea7f15ed17150691b5b3ead75450e575229ef;hp=b1464c6bb9967ce4efa48318a288babd0ff322e9;hpb=8d6abef443543013d7b37cda1375a28f040d24a6;p=python_utils.git diff --git a/dict_utils.py b/dict_utils.py index b1464c6..79c86ed 100644 --- a/dict_utils.py +++ b/dict_utils.py @@ -198,7 +198,9 @@ def min_key(d: Dict[Any, Any]) -> Any: return min(d.keys()) -def parallel_lists_to_dict(keys: List[Any], values: List[Any]) -> Dict[Any, Any]: +def parallel_lists_to_dict( + keys: List[Any], values: List[Any] +) -> Dict[Any, Any]: """Given two parallel lists (keys and values), create and return a dict. @@ -209,7 +211,9 @@ def parallel_lists_to_dict(keys: List[Any], values: List[Any]) -> Dict[Any, Any] """ if len(keys) != len(values): - raise Exception("Parallel keys and values lists must have the same length") + raise Exception( + "Parallel keys and values lists must have the same length" + ) return dict(zip(keys, values))