Fixed few bugs 🎵

This commit is contained in:
Ben Arc 2021-04-27 10:13:04 +01:00
parent c0b18d78cc
commit 3f8890def7
3 changed files with 2 additions and 3 deletions

View File

@ -11,4 +11,3 @@ jukebox_ext: Blueprint = Blueprint(
from .views_api import * # noqa
from .views import * # noqa
from .lnurl import * # noqa

View File

@ -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:

View File

@ -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