From bb2388fac88aabb34f5fe4de76bc9f1fd062477c Mon Sep 17 00:00:00 2001 From: april Date: Mon, 15 Jan 2024 16:58:44 -0600 Subject: [PATCH] Remove debug log --- api/database/flights.py | 1 - 1 file changed, 1 deletion(-) diff --git a/api/database/flights.py b/api/database/flights.py index b50c7ed..d3c319b 100644 --- a/api/database/flights.py +++ b/api/database/flights.py @@ -223,7 +223,6 @@ async def update_flight_fields(id: str, update: dict) -> str: :param update: Dictionary of fields and values to update :return: ID of updated flight """ - print(fs_keys) for field in update.keys(): if field not in fs_keys: raise HTTPException(400, f"Invalid update field: {field}")