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:
2323 for token , details in balances_response .items ():
2424 print (f"Token: { token } " )
2525 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' ]} " )
2929
3030 except Exception as e :
3131 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:
2727 print (f"Mint: { mint } " )
2828 for warning in warnings :
2929 print (f" - Type: { warning .get ('type' )} " )
30- print (f" - Message: { warning .get ('message' )} " )
30+ print (f" Message: { warning .get ('message' )} " )
3131 else :
3232 print ("No warnings returned for provided mints" )
3333
You can’t perform that action at this time.
0 commit comments