diff --git a/src/alpine_bits_python/api.py b/src/alpine_bits_python/api.py index e243e55..d98c0bc 100644 --- a/src/alpine_bits_python/api.py +++ b/src/alpine_bits_python/api.py @@ -1038,6 +1038,7 @@ async def handle_xml_upload( # TODO Bit sketchy. May need requests-toolkit in the future def parse_multipart_data(content_type: str, body: bytes) -> dict[str, Any]: """Parse multipart/form-data from raw request body. + This is a simplified parser for the AlpineBits use case. """ if "multipart/form-data" not in content_type: diff --git a/src/alpine_bits_python/config_loader.py b/src/alpine_bits_python/config_loader.py index 168a916..d470941 100644 --- a/src/alpine_bits_python/config_loader.py +++ b/src/alpine_bits_python/config_loader.py @@ -96,6 +96,8 @@ DEFAULT_CONFIG_FILE = "config.yaml" class Config: + """Class to load and hold the configuration.""" + def __init__( self, config_folder: str | Path | None = None,