Skip to content

Commit

Permalink
Solution try 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Baranotik15 committed Jan 1, 2025
1 parent ff51e36 commit 634d916
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/cinema/bar.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
class CinemaBar:
@staticmethod
def sell_product(product: str, customer: Customer) -> None:
print(f'Cinema bar sold {product} to {customer.name}.')
print(f"Cinema bar sold {product} to {customer.name}.")
2 changes: 1 addition & 1 deletion app/people/cinema_staff.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ def __init__(self, name: str) -> None:
self.name = name

def clean_hall(self, hall_number: int) -> None:
print(f'Cleaner {self.name} is cleaning hall number {hall_number}.')
print(f"Cleaner {self.name} is cleaning hall number {hall_number}.")

0 comments on commit 634d916

Please sign in to comment.