Skip to content

Commit

Permalink
Solution
Browse files Browse the repository at this point in the history
  • Loading branch information
mitichd committed Oct 11, 2024
1 parent fe9f42e commit 210abf9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/cinema/hall.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ def movie_session(
cleaning_staff (str): The cleaner who will clean the hall
after the session.
"""
print(f"\"{movie_name}\" started in hall number {self.number}.")
print(f'"{movie_name}" started in hall number {self.number}.')
for customer in customers:
customer.watch_movie(movie_name)
print(f"\"{movie_name}\" ended.")
print(f'"{movie_name}" ended.')
cleaning_staff.clean_hall(self.number)
2 changes: 1 addition & 1 deletion app/people/customer.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ def watch_movie(self, movie: str) -> None:
Parameters:
movie (str): The name of the movie being watched.
"""
print(f"{self.name} is watching \"{movie}\".")
print(f'{self.name} is watching "{movie}".')

0 comments on commit 210abf9

Please sign in to comment.