From 790caf48a8a9acd380533aa388ecc82035eb40d7 Mon Sep 17 00:00:00 2001 From: Aleksandr Date: Sun, 6 Oct 2024 15:20:50 +0300 Subject: [PATCH] fix quotes --- app/people/customer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/people/customer.py b/app/people/customer.py index a3a615a41..73eba8466 100644 --- a/app/people/customer.py +++ b/app/people/customer.py @@ -4,4 +4,4 @@ def __init__(self, name: str, food: str) -> None: self.food = food def watch_movie(self, movie: str) -> None: - print(f"{self.name} is watching \"{movie}\".") + print(f'{self.name} is watching "{movie}".')