Skip to content

Commit

Permalink
typo fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
innovatorved committed Nov 8, 2023
1 parent a2ac328 commit a221d93
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch:

jobs:
sync-to-hub:
deploy-to-hub:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion app/core/models/Transcribe.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ def create(self, user_id: UUID, text: str, duration: int):
self.db.refresh(self.transcribe_data)
except Exception as e:
self.db.rollback()
raise e
raise e
1 change: 1 addition & 0 deletions app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
allow_headers=["*"],
)


@app.get("/", include_in_schema=False)
async def redirect_to_docs():
return RedirectResponse(url="/docs")
Expand Down

0 comments on commit a221d93

Please sign in to comment.