From 584a4b06150c2c96c5a404459e1aacf09b786c6d Mon Sep 17 00:00:00 2001 From: vadim Date: Wed, 18 Dec 2024 21:36:31 +0300 Subject: [PATCH] Final --- app/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models.py b/app/models.py index 7cb3a28..b1c516c 100644 --- a/app/models.py +++ b/app/models.py @@ -15,7 +15,7 @@ class Coffee(Base): title = Column(String(200), nullable=False) origin = Column(String(200)) intensifier = Column(String(100)) - notes : Column[list[str]] = Column(ARRAY(String)) + notes: Column[list[str]] = Column(ARRAY(String)) def __repr__(self): return f"Coffee(id={self.id}),title={self.title}, origin={self.origin}, intensifier={self.intensifier}, notes={self.notes}"