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
+4 -3
View File
@@ -3,11 +3,12 @@ import base64
import hashlib
import json
import urllib.parse
from typing import Any, AsyncGenerator, Dict, Optional
from collections.abc import AsyncGenerator
from typing import Any, Optional
import httpx
from loguru import logger
from websockets.client import connect
from websockets.legacy.client import connect
from lnbits.helpers import normalize_endpoint
from lnbits.settings import settings
@@ -101,7 +102,7 @@ class PhoenixdWallet(Wallet):
try:
msats_amount = amount
data: Dict[str, Any] = {
data: dict[str, Any] = {
"amountSat": f"{msats_amount}",
"externalId": "",
}