We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 851bd72 commit a054a9fCopy full SHA for a054a9f
.github/workflows/deploy.yml
@@ -30,7 +30,6 @@ jobs:
30
- name: Deploy to Server
31
run: |
32
ssh server '
33
- touch random
34
cd fastapi-book-project
35
git fetch origin main
36
git reset --hard origin/main
api/routes/books.py
@@ -54,7 +54,7 @@ async def get_book(book_id: int) -> Book:
54
if not book:
55
raise HTTPException(
56
status_code=status.HTTP_404_NOT_FOUND,
57
- detail="Book not found here"
+ detail="Book not found"
58
)
59
return book
60
0 commit comments