fix:removed print statements
diff --git a/erpnext/www/book-appointment/index.py b/erpnext/www/book-appointment/index.py
index 5f03e77..a810a2b 100644
--- a/erpnext/www/book-appointment/index.py
+++ b/erpnext/www/book-appointment/index.py
@@ -59,7 +59,6 @@
     converted_timeslots = []
     for timeslot in timeslots:
         timeslot = local_timezone.localize(timeslot)
-        print(timeslot)
         timeslot = timeslot.astimezone(guest_timezone)
         timeslot = timeslot.replace(tzinfo=None)
         # Check if holiday
diff --git a/erpnext/www/book-appointment/verify/index.py b/erpnext/www/book-appointment/verify/index.py
index 8ea9638..6eda19f 100644
--- a/erpnext/www/book-appointment/verify/index.py
+++ b/erpnext/www/book-appointment/verify/index.py
@@ -15,6 +15,5 @@
         context.success = True
         return context
     else:
-        print('Something not found')
         context.success = False
         return context
\ No newline at end of file