File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -23,9 +23,9 @@ def test_ultra_get_balances() -> None:
23
23
for token , details in balances_response .items ():
24
24
print (f"Token: { token } " )
25
25
print (f" - Amount: { details ['amount' ]} " )
26
- print (f" - UI Amount: { details ['uiAmount' ]} " )
27
- print (f" - Slot: { details ['slot' ]} " )
28
- print (f" - Is Frozen: { details ['isFrozen' ]} " )
26
+ print (f" UI Amount: { details ['uiAmount' ]} " )
27
+ print (f" Slot: { details ['slot' ]} " )
28
+ print (f" Is Frozen: { details ['isFrozen' ]} " )
29
29
30
30
except Exception as e :
31
31
print ("Error occurred while fetching balances:" , str (e ))
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ def test_ultra_shield() -> None:
27
27
print (f"Mint: { mint } " )
28
28
for warning in warnings :
29
29
print (f" - Type: { warning .get ('type' )} " )
30
- print (f" - Message: { warning .get ('message' )} " )
30
+ print (f" Message: { warning .get ('message' )} " )
31
31
else :
32
32
print ("No warnings returned for provided mints" )
33
33
You can’t perform that action at this time.
0 commit comments