diff --git a/controllers/showtime_controller.py b/controllers/showtime_controller.py
index bbf86aca390889daa09cddd4845b44cbfb3c7078..fbe5f86145322dd3f20cd27013b3c2afd771dbce 100644
--- a/controllers/showtime_controller.py
+++ b/controllers/showtime_controller.py
@@ -39,7 +39,7 @@ def add_showtime(movie_id, city, screen_number, show_date, show_time, available_
         return "Showtime added successfully."
 
 
-# 🟢 Delete a showtime
+# Delete a showtime
 def delete_showtime(show_id):
     session = SessionLocal()
     showtime = session.query(Showtime).filter_by(show_id=show_id).first()
@@ -47,10 +47,10 @@ def delete_showtime(show_id):
         session.delete(showtime)
         session.commit()
         session.close()
-        return "✅ Showtime deleted successfully!"
+        return "Showtime deleted successfully!"
     else:
         session.close()
-        return "❌ Showtime not found!"
+        return "Showtime not found!"
     
 def update_showtime_details(show_id, new_date, new_time, new_screen):
     with SessionLocal() as db: