Skip to content

Commit e7cb7ad

Browse files
committed
byte and binary formats return bytes type
1 parent 5a02484 commit e7cb7ad

File tree

1 file changed

+2
-2
lines changed
  • openapi_core/unmarshalling/schemas

1 file changed

+2
-2
lines changed

openapi_core/unmarshalling/schemas/util.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ def format_uuid(value: Any) -> UUID:
1717
return UUID(value)
1818

1919

20-
def format_byte(value: str, encoding: str = "utf8") -> str:
21-
return str(b64decode(value), encoding)
20+
def format_byte(value: str, encoding: str = "utf8") -> bytes:
21+
return b64decode(value)
2222

2323

2424
def format_number(value: str) -> Union[int, float]:

0 commit comments

Comments
 (0)