Skip to content

Commit

Permalink
Fix FastAPI version
Browse files Browse the repository at this point in the history
  • Loading branch information
dyakovri committed Apr 5, 2024
1 parent c49c3a8 commit e894bf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion calendar_backend/routes/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
),
version=__version__,
# Настраиваем интернет документацию
root_path=settings.ROOT_PATH if __version__ != 'dev' else '/',
root_path=settings.ROOT_PATH if __version__ != 'dev' else '',
docs_url=None if __version__ != 'dev' else '/docs',
redoc_url=None,
)
Expand Down

0 comments on commit e894bf8

Please sign in to comment.