Skip to content

Commit a054a9f

Browse files
committed
updated
1 parent 851bd72 commit a054a9f

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ jobs:
3030
- name: Deploy to Server
3131
run: |
3232
ssh server '
33-
touch random
3433
cd fastapi-book-project
3534
git fetch origin main
3635
git reset --hard origin/main

api/routes/books.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ async def get_book(book_id: int) -> Book:
5454
if not book:
5555
raise HTTPException(
5656
status_code=status.HTTP_404_NOT_FOUND,
57-
detail="Book not found here"
57+
detail="Book not found"
5858
)
5959
return book
6060

0 commit comments

Comments
 (0)