fix: lint

This commit is contained in:
Vlad Stan
2026-05-21 14:12:43 +03:00
parent d921af3476
commit cd57bf66fe
2 changed files with 3 additions and 3 deletions
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")