Remove dummy song
This commit is contained in:
parent
5caa19fd9f
commit
6f1e590e50
1 changed files with 12 additions and 12 deletions
|
@ -26,18 +26,18 @@ db_conn = get_connection()
|
||||||
state = State(app, socketio, db_conn.cursor())
|
state = State(app, socketio, db_conn.cursor())
|
||||||
init_db(state.db)
|
init_db(state.db)
|
||||||
|
|
||||||
state.rooms[1000] = Room(
|
# state.rooms[1000] = Room(
|
||||||
id=1000,
|
# id=1000,
|
||||||
coord=(1.0, 5.5),
|
# coord=(1.0, 5.5),
|
||||||
name="Test Room",
|
# name="Test Room",
|
||||||
pin=None,
|
# pin=None,
|
||||||
tags=set(),
|
# tags=set(),
|
||||||
range_size=100,
|
# range_size=100,
|
||||||
songs={"b": (Song(uuid="b", title="title", artist="art", tags=["a", "B"], image_id="img", youtube_id="yt"), 1)},
|
# songs={"b": (Song(uuid="b", title="title", artist="art", tags=["a", "B"], image_id="img", youtube_id="yt"), 1)},
|
||||||
history=[],
|
# history=[],
|
||||||
playing=[Song(uuid="<uuid>", title="<title>", artist="<artist>", tags=[], image_id="<img>", youtube_id="<yt>")],
|
# playing=[Song(uuid="<uuid>", title="<title>", artist="<artist>", tags=[], image_id="<img>", youtube_id="<yt>")],
|
||||||
playing_idx=0,
|
# playing_idx=0,
|
||||||
)
|
# )
|
||||||
|
|
||||||
|
|
||||||
def error(msg: str, status: int = 400) -> Response:
|
def error(msg: str, status: int = 400) -> Response:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue