Skip to content

Commit 180d6ab

Browse files
committed
remove debug statements
1 parent 9d4804a commit 180d6ab

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

tcf_website/views/search.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -198,13 +198,9 @@ def filter_courses(filters):
198198
from_time = filters.get("from_time")
199199
to_time = filters.get("to_time")
200200

201-
print("DEBUG TIME FILTERS")
202-
print(weekdays, from_time, to_time)
203201
if any([weekdays, from_time, to_time]):
204202
time_filtered = Course.filter_by_time(days=weekdays, start_time=from_time, end_time=to_time)
205203
results = results.filter(id__in=time_filtered.values_list("id", flat=True))
206-
print(results)
207-
print("DEBUG TIME FILTERED")
208204

209205
results = results.distinct().order_by("subdepartment__mnemonic", "number")
210206

0 commit comments

Comments
 (0)