make format

This commit is contained in:
callebtc
2022-10-15 00:59:21 +02:00
parent 7fb2c81ede
commit 6f913e3cc9
7 changed files with 16 additions and 21 deletions

View File

@@ -10,14 +10,14 @@ from cashu.core.migrations import migrate_databases
SERVER_ENDPOINT = "http://localhost:3338"
from cashu.mint import migrations
from cashu.mint.ledger import Ledger
from cashu.core.settings import MINT_PRIVATE_KEY, MAX_ORDER
from cashu.core.db import Database
from cashu.lightning.lnbits import LNbitsWallet
import os
from cashu.core.db import Database
from cashu.core.settings import MAX_ORDER, MINT_PRIVATE_KEY
from cashu.lightning.lnbits import LNbitsWallet
from cashu.mint import migrations
from cashu.mint.ledger import Ledger
async def assert_err(f, msg):
"""Compute f() and expect an error message 'msg'."""