mirror of
https://github.com/aljazceru/nutshell.git
synced 2025-12-20 10:34:20 +01:00
Python/relative_import (#186)
* relative import all the things * make format * add __init__.py to cli/ * fix mypy errors * get rid of more mypy * mypy fix crud.py * fix another mypy error
This commit is contained in:
@@ -6,7 +6,7 @@ import click
|
||||
from click import Context
|
||||
from loguru import logger
|
||||
|
||||
from cashu.core.base import (
|
||||
from ...core.base import (
|
||||
Proof,
|
||||
TokenV1,
|
||||
TokenV2,
|
||||
@@ -15,10 +15,10 @@ from cashu.core.base import (
|
||||
TokenV3Token,
|
||||
WalletKeyset,
|
||||
)
|
||||
from cashu.core.helpers import sum_proofs
|
||||
from cashu.core.settings import settings
|
||||
from cashu.wallet.crud import get_keyset
|
||||
from cashu.wallet.wallet import Wallet as Wallet
|
||||
from ...core.helpers import sum_proofs
|
||||
from ...core.settings import settings
|
||||
from ...wallet.crud import get_keyset
|
||||
from ...wallet.wallet import Wallet as Wallet
|
||||
|
||||
|
||||
async def verify_mint(mint_wallet: Wallet, url: str):
|
||||
|
||||
Reference in New Issue
Block a user