Files
usda-hass-config/custom_components/hacs/utils/decode.py
2024-10-01 14:06:39 +00:00

8 lines
207 B
Python

"""Util to decode content from the github API."""
from base64 import b64decode
def decode_content(content: str) -> str:
"""Decode content."""
return b64decode(bytearray(content, "utf-8")).decode()