fix: lint

This commit is contained in:
Vlad Stan
2026-05-13 15:23:29 +03:00
parent 3850f561d6
commit 0e8072a36e
3 changed files with 13 additions and 13 deletions
File diff suppressed because one or more lines are too long
+10 -10
View File
File diff suppressed because one or more lines are too long
+2 -2
View File
@@ -378,7 +378,7 @@ async def test_square_wallet_create_invoice(settings: Settings):
)
]
)
wallet.client = client
wallet.client = client # type: ignore[assignment]
response = await wallet.create_invoice(
amount=1.23,
@@ -423,7 +423,7 @@ async def test_square_wallet_get_invoice_status(settings: Settings):
MockHTTPResponse(json_data={"payment": {"status": "COMPLETED"}}),
]
)
wallet.client = client
wallet.client = client # type: ignore[assignment]
status = await wallet.get_invoice_status("fiat_square_order_ORDER123")