From 634d91612e3da885e577e77f7b44a2703771e243 Mon Sep 17 00:00:00 2001 From: RuslanTopal Date: Wed, 1 Jan 2025 15:53:09 +0000 Subject: [PATCH] Solution try 2 --- app/cinema/bar.py | 2 +- app/people/cinema_staff.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/cinema/bar.py b/app/cinema/bar.py index 14314ce82..656bb15fd 100644 --- a/app/cinema/bar.py +++ b/app/cinema/bar.py @@ -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}.") diff --git a/app/people/cinema_staff.py b/app/people/cinema_staff.py index 5ff1aac93..ddab0df53 100644 --- a/app/people/cinema_staff.py +++ b/app/people/cinema_staff.py @@ -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}.")