chore: update python packages + formatting + cleanup (#3221)

This commit is contained in:
dni ⚡
2025-07-08 10:17:27 +02:00
parent c4c03d96a3
commit a16078a6ba
53 changed files with 1159 additions and 576 deletions
+3 -2
View File
@@ -2,7 +2,8 @@ import asyncio
import base64
import hashlib
import json
from typing import Any, AsyncGenerator, Dict, Optional
from collections.abc import AsyncGenerator
from typing import Any, Optional
import httpx
from loguru import logger
@@ -105,7 +106,7 @@ class LndRestWallet(Wallet):
unhashed_description: Optional[bytes] = None,
**kwargs,
) -> InvoiceResponse:
_data: Dict = {
_data: dict = {
"value": amount,
"private": settings.lnd_rest_route_hints,
"memo": memo or "",