Fixed few bugs 🎵
This commit is contained in:
parent
c0b18d78cc
commit
3f8890def7
3 changed files with 2 additions and 3 deletions
|
|
@ -11,4 +11,3 @@ jukebox_ext: Blueprint = Blueprint(
|
||||||
|
|
||||||
from .views_api import * # noqa
|
from .views_api import * # noqa
|
||||||
from .views import * # noqa
|
from .views import * # noqa
|
||||||
from .lnurl import * # noqa
|
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,7 @@
|
||||||
from typing import List, Optional
|
from typing import List, Optional
|
||||||
|
|
||||||
from . import db
|
from . import db
|
||||||
from .wordlists import animals
|
from .models import Jukebox
|
||||||
from .models import Shop, Item
|
|
||||||
|
|
||||||
|
|
||||||
async def create_update_jukebox(wallet_id: str) -> int:
|
async def create_update_jukebox(wallet_id: str) -> int:
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@ import hashlib
|
||||||
from collections import OrderedDict
|
from collections import OrderedDict
|
||||||
from quart import url_for
|
from quart import url_for
|
||||||
from typing import NamedTuple, Optional, List, Dict
|
from typing import NamedTuple, Optional, List, Dict
|
||||||
|
from sqlite3 import Row
|
||||||
|
|
||||||
class Jukebox(NamedTuple):
|
class Jukebox(NamedTuple):
|
||||||
id: int
|
id: int
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue