From 0f76903d390f54eea832d438491096bbe7551a85 Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Wed, 28 Dec 2022 04:26:27 +0100 Subject: [PATCH] make format --- cashu/wallet/cli.py | 6 +++--- cashu/wallet/cli_helpers.py | 9 +++------ 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/cashu/wallet/cli.py b/cashu/wallet/cli.py index 4b6901e..65bf4f3 100644 --- a/cashu/wallet/cli.py +++ b/cashu/wallet/cli.py @@ -51,10 +51,10 @@ from cashu.wallet.wallet import Wallet as Wallet from .cli_helpers import ( get_mint_wallet, print_mint_balances, - redeem_multimint, - verify_mints, - token_from_lnbits_link, proofs_to_token, + redeem_multimint, + token_from_lnbits_link, + verify_mints, ) diff --git a/cashu/wallet/cli_helpers.py b/cashu/wallet/cli_helpers.py index 6cf8930..132b6fe 100644 --- a/cashu/wallet/cli_helpers.py +++ b/cashu/wallet/cli_helpers.py @@ -1,15 +1,12 @@ import os +import urllib.parse import click -from cashu.core.base import Proof, WalletKeyset, TokenJson, TokenMintJson -from cashu.core.settings import CASHU_DIR +from cashu.core.base import Proof, TokenJson, TokenMintJson, WalletKeyset +from cashu.core.settings import CASHU_DIR, MINT_URL from cashu.wallet.crud import get_keyset from cashu.wallet.wallet import Wallet as Wallet -import urllib.parse -from cashu.core.settings import ( - MINT_URL, -) async def verify_mints(ctx, dtoken):