We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a02484 commit e7cb7adCopy full SHA for e7cb7ad
openapi_core/unmarshalling/schemas/util.py
@@ -17,8 +17,8 @@ def format_uuid(value: Any) -> UUID:
17
return UUID(value)
18
19
20
-def format_byte(value: str, encoding: str = "utf8") -> str:
21
- return str(b64decode(value), encoding)
+def format_byte(value: str, encoding: str = "utf8") -> bytes:
+ return b64decode(value)
22
23
24
def format_number(value: str) -> Union[int, float]:
0 commit comments