We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a75f98b commit e007193Copy full SHA for e007193
cuenca/resources/base.py
@@ -107,7 +107,7 @@ def download(
107
f'/{cls._resource}/{id}',
108
headers=dict(Accept=file_format.value),
109
)
110
- return BytesIO(resp)
+ return BytesIO(base64.b64decode(resp))
111
112
@property
113
def pdf(self) -> bytes:
cuenca/version.py
@@ -1,3 +1,3 @@
1
-__version__ = '0.14.4'
+__version__ = '0.14.5.dev0'
2
CLIENT_VERSION = __version__
3
API_VERSION = '2020-03-19'
0 commit comments