Remove dummy song

This commit is contained in:
Leonardo Segala 2025-08-02 04:11:54 +02:00
parent 6f1e590e50
commit e01d52f7f4

View file

@ -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={},
# history=[], history=[],
# playing=[Song(uuid="<uuid>", title="<title>", artist="<artist>", tags=[], image_id="<img>", youtube_id="<yt>")], playing=[],
# playing_idx=0, playing_idx=0,
# ) )
def error(msg: str, status: int = 400) -> Response: def error(msg: str, status: int = 400) -> Response: