make format

This commit is contained in:
callebtc
2022-10-29 20:51:45 +02:00
parent 8222af9649
commit 13deeded6b
3 changed files with 5 additions and 5 deletions

View File

@@ -3,9 +3,10 @@ import pathlib
import platform
import socket
import subprocess
from loguru import logger
import time
from loguru import logger
class TorProxy:
def __init__(self):

View File

@@ -25,9 +25,9 @@ from cashu.core.settings import (
ENV_FILE,
LIGHTNING,
MINT_URL,
VERSION,
SOCKS_HOST,
SOCKS_PORT,
VERSION,
)
from cashu.wallet import migrations
from cashu.wallet.crud import (

View File

@@ -35,8 +35,9 @@ from cashu.core.script import (
step2_carol_sign_tx,
)
from cashu.core.secp import PublicKey
from cashu.core.settings import DEBUG, VERSION, TOR, SOCKS_HOST, SOCKS_PORT
from cashu.core.settings import DEBUG, SOCKS_HOST, SOCKS_PORT, TOR, VERSION
from cashu.core.split import amount_split
from cashu.tor.tor import TorProxy
from cashu.wallet.crud import (
get_keyset,
get_proofs,
@@ -50,8 +51,6 @@ from cashu.wallet.crud import (
update_proof_reserved,
)
from cashu.tor.tor import TorProxy
class LedgerAPI:
keys: Dict[int, str]