Skip to content

Commit

Permalink
fix: remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
rudiejd committed Dec 21, 2023
1 parent 843b474 commit 0351ef4
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion server/chalicelib/dynamo.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ def query_agg_trip_metrics(start_date: str, end_date: str, table_name: str, line
date_condition = Key("date").between(start_date, end_date)
condition = line_condition & date_condition
response = table.query(KeyConditionExpression=condition)
print(response)
return ddb_json.loads(response["Items"])


Expand Down

0 comments on commit 0351ef4

Please sign in to comment.