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