Fixed few bugs 🎵
This commit is contained in:
parent
c0b18d78cc
commit
3f8890def7
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user