diff --git a/cashu/wallet/cli_helpers.py b/cashu/wallet/cli_helpers.py index b4ba620..0e1e57e 100644 --- a/cashu/wallet/cli_helpers.py +++ b/cashu/wallet/cli_helpers.py @@ -3,7 +3,7 @@ import urllib.parse import click -from cashu.core.base import Proof, TokenV2, TokenMintJson, WalletKeyset +from cashu.core.base import Proof, TokenMintJson, TokenV2, 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 diff --git a/cashu/wallet/wallet.py b/cashu/wallet/wallet.py index 4f28508..a32803e 100644 --- a/cashu/wallet/wallet.py +++ b/cashu/wallet/wallet.py @@ -27,8 +27,8 @@ from cashu.core.base import ( PostMintResponseLegacy, Proof, SplitRequest, - TokenV2, TokenMintJson, + TokenV2, WalletKeyset, ) from cashu.core.bolt11 import Invoice as InvoiceBolt11