| Current Path : /proc/thread-self/root/snap/certbot/current/lib64/python3.12/site-packages/acme/ |
| Current File : //proc/thread-self/root/snap/certbot/current/lib64/python3.12/site-packages/acme/util.py |
"""ACME utilities."""
from typing import Any
from typing import Callable
from typing import Mapping
def map_keys(dikt: Mapping[Any, Any], func: Callable[[Any], Any]) -> dict[Any, Any]:
"""Map dictionary keys."""
return {func(key): value for key, value in dikt.items()}