mirror of
https://github.com/lnbits/lnbits.git
synced 2025-09-27 20:36:16 +02:00
Fixed few bugs 🎵
This commit is contained in:
@@ -11,4 +11,3 @@ jukebox_ext: Blueprint = Blueprint(
|
||||
|
||||
from .views_api import * # noqa
|
||||
from .views import * # noqa
|
||||
from .lnurl import * # noqa
|
||||
|
@@ -1,8 +1,7 @@
|
||||
from typing import List, Optional
|
||||
|
||||
from . import db
|
||||
from .wordlists import animals
|
||||
from .models import Shop, Item
|
||||
from .models import Jukebox
|
||||
|
||||
|
||||
async def create_update_jukebox(wallet_id: str) -> int:
|
||||
|
@@ -4,6 +4,7 @@ import hashlib
|
||||
from collections import OrderedDict
|
||||
from quart import url_for
|
||||
from typing import NamedTuple, Optional, List, Dict
|
||||
from sqlite3 import Row
|
||||
|
||||
class Jukebox(NamedTuple):
|
||||
id: int
|
||||
|
Reference in New Issue
Block a user