Skip to content

Commit ddc8f29

Browse files
committed
fix: remove debug print
1 parent fcbd014 commit ddc8f29

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/aleph/sdk/client/services/voucher.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,11 @@ async def _fetch_voucher_update(self):
3333
vouchers_post: PostsResponse = await self._client.get_posts(
3434
post_filter=post_filter, page_size=1
3535
)
36-
print(vouchers_post.model_dump_json())
3736

3837
if not vouchers_post.posts:
3938
return []
4039

41-
message_post: Post = vouchers_post.posts[
42-
0
43-
] # Not sure about that need to re c heck
44-
print(message_post.model_dump_json())
40+
message_post: Post = vouchers_post.posts[0]
4541

4642
nft_vouchers = message_post.content.get("nft_vouchers", {})
4743
return list(nft_vouchers.items()) # [(voucher_id, voucher_data)]

0 commit comments

Comments
 (0)