Skip to content

Commit

Permalink
Final
Browse files Browse the repository at this point in the history
  • Loading branch information
vadim committed Dec 18, 2024
1 parent f2838ae commit 584a4b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down

0 comments on commit 584a4b0

Please sign in to comment.