Skip to content

Commit

Permalink
2
Browse files Browse the repository at this point in the history
  • Loading branch information
vadim committed Dec 18, 2024
1 parent dd5eed3 commit 209c188
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class Coffee(Base):
title = Column(String(200), nullable=False)
origin = Column(String(200))
intensifier = Column(String(100))
notes = Column(ARRAY(String))
notes = Column(ARRAY(String(100)))

def __repr__(self):
return f"Coffee(id={self.id}),title={self.title}, origin={self.origin}, intensifier={self.intensifier}, notes={self.notes}"
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ isort==5.13.2
mypy==1.13.0
pytest==8.3.4
coverage==7.6.9
requests==2.32.3
requests==2.32.3
types-requests==2.32.0.20241016

0 comments on commit 209c188

Please sign in to comment.