Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
DongwookKim0823 committed Dec 13, 2024
1 parent 250fc12 commit db91545
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mung_manager/reservations/selectors/reservations.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ def get_queryset_for_duplicate_reservation(
formatted_dates.append(current_date.strftime("%Y-%m-%d"))
current_date += timedelta(days=1)

return list(dict.fromkeys(formatted_dates))
return list(set(formatted_dates))

def get_queryset_for_hotel_type_reservation(
self,
Expand Down

0 comments on commit db91545

Please sign in to comment.