diff --git a/openapi_core/unmarshalling/schemas/util.py b/openapi_core/unmarshalling/schemas/util.py index 6efc8e60..6f6371c4 100644 --- a/openapi_core/unmarshalling/schemas/util.py +++ b/openapi_core/unmarshalling/schemas/util.py @@ -18,8 +18,8 @@ def format_uuid(value: Any) -> UUID: return UUID(value) -def format_byte(value: str, encoding: str = "utf8") -> str: - return str(b64decode(value), encoding) +def format_byte(value: str, encoding: str = "utf8") -> bytes: + return b64decode(value) def format_number(value: str) -> Union[int, float]: