We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57790d6 commit 829db29Copy full SHA for 829db29
tests/model/generated/endpoint/test_attachment_public.py
@@ -1,5 +1,3 @@
1
-import os
2
-
3
from bunq.sdk.client import ApiClient
4
from bunq.sdk.model.generated import endpoint
5
from tests.bunq_test import BunqSdkTestCase
@@ -25,8 +23,10 @@ def test_file_upload_and_retrieval(self):
25
23
self._ATTACHMENT_DESCRIPTION,
26
24
}
27
28
- attachment_uuid = endpoint.AttachmentPublic.create(self.attachment_contents,
29
- custom_headers).value
+ attachment_uuid = endpoint.AttachmentPublic.create(
+ self.attachment_contents,
+ custom_headers
+ ).value
30
31
contents_from_response = endpoint.AttachmentPublicContent.list(
32
attachment_uuid).value
0 commit comments