From 018fc7579dbf841d0866d64ac96e55a04ff8afa4 Mon Sep 17 00:00:00 2001 From: Kristy Fournier <124598538+kristy-fournier@users.noreply.github.com> Date: Wed, 5 Mar 2025 15:50:14 -0500 Subject: [PATCH] changed some prints --- Server/webbyBits.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Server/webbyBits.py b/Server/webbyBits.py index edc637c..d645bb2 100644 --- a/Server/webbyBits.py +++ b/Server/webbyBits.py @@ -126,7 +126,7 @@ def searchSongDB(): tempData[i] = songDatabaseList["songData"][i] except: pass - print(tempData) + # print(tempData) return tempData @app.route("/songadd", methods=["POST"]) @@ -147,7 +147,7 @@ def getPlaylist(): tempPlaylist.append({songNext:temp}) for i in playlist: tempPlaylist.append({i:songDatabaseList["songData"][i]}) - print(tempPlaylist) + # print(tempPlaylist) return tempPlaylist if __name__ == "__main__":