fix:removed print statements

This commit is contained in:
Pranav Nachanekar 2019-10-04 11:12:50 +05:30
parent 22189ec9e8
commit faf39ecef4
2 changed files with 0 additions and 2 deletions

View File

@ -59,7 +59,6 @@ def get_appointment_slots(date, timezone):
converted_timeslots = [] converted_timeslots = []
for timeslot in timeslots: for timeslot in timeslots:
timeslot = local_timezone.localize(timeslot) timeslot = local_timezone.localize(timeslot)
print(timeslot)
timeslot = timeslot.astimezone(guest_timezone) timeslot = timeslot.astimezone(guest_timezone)
timeslot = timeslot.replace(tzinfo=None) timeslot = timeslot.replace(tzinfo=None)
# Check if holiday # Check if holiday

View File

@ -15,6 +15,5 @@ def get_context(context):
context.success = True context.success = True
return context return context
else: else:
print('Something not found')
context.success = False context.success = False
return context return context