fix flake8 F401+F403 (module imported but unused + unable to detect undefined names)

This commit is contained in:
Pavol Rusnak 2023-01-21 19:31:42 +00:00
parent 967ce06ca5
commit a49a654137
No known key found for this signature in database
GPG key ID: 91F3B339B9A02A3D
65 changed files with 102 additions and 160 deletions

View file

@ -5,8 +5,7 @@ from httpx import AsyncClient
from lnbits.app import create_app
from lnbits.commands import migrate_databases
from lnbits.core.crud import create_account, create_wallet, get_wallet
from lnbits.core.models import BalanceCheck, Payment, User, Wallet
from lnbits.core.crud import create_account, create_wallet
from lnbits.core.views.api import CreateInvoiceData, api_payments_create_invoice
from lnbits.db import Database
from lnbits.settings import settings