From 956287b83cfb1c873c634a1ea03defec49d915d2 Mon Sep 17 00:00:00 2001 From: Oleksiy Rozehan Date: Thu, 14 Sep 2023 13:24:50 +0300 Subject: [PATCH] Solution with correct type annotation --- app/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/main.py b/app/main.py index 69329221..e7ccaa8e 100644 --- a/app/main.py +++ b/app/main.py @@ -4,8 +4,8 @@ class Animal: def __init__( self, name: str, - health: int | None = 100, - hidden: bool | None = False + health: int = 100, + hidden: bool = False ) -> None: self.name = name self.health = health