Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on May 3, 2024. It is now read-only.

Commit 25abf34

Browse files
committed
removed print statements
1 parent 9723285 commit 25abf34

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

nftlabs/modules/market.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ def buy(self, listing_id: int, quantity: int):
9292
Buy a listing.
9393
"""
9494
item = self.get(listing_id)
95-
print(item)
9695
owner = self.get_signer_address()
9796
spender = self.address
9897
total_price = item.pricePerToken * quantity

nftlabs/modules/pack.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,7 @@ def get(self, pack_id: int) -> PackMetadata:
2323
uri = self.__abi_module.token_uri.call(pack_id)
2424
if uri == "":
2525
raise AssetNotFoundException(pack_id)
26-
print("uri = ", uri)
2726
metadata = self.get_storage().get(uri)
28-
print("pack metadata -", metadata)
2927
return None
3028

3129
def open(self, pack_id: int) -> List[NftMetadata]:

0 commit comments

Comments
 (0)