tiny docs tweaks

This commit is contained in:
Jakob Pinterits
2024-10-24 22:53:52 +02:00
parent a3de7f63a0
commit dee4bd9837
2 changed files with 5 additions and 7 deletions
+2 -3
View File
@@ -188,9 +188,8 @@ class FastapiServer(fastapi.FastAPI, AbstractAppServer):
summary=None,
description=app_.description,
openapi_url=None,
# openapi_url="/openapi.json" if debug_mode else None,
# docs_url="/docs" if debug_mode else None,
# redoc_url="/redoc" if debug_mode else None,
docs_url=None,
redoc_url=None,
lifespan=type(self)._lifespan,
)
AbstractAppServer.__init__(
+3 -4
View File
@@ -217,12 +217,11 @@ def _indices_to_rectangle(
@t.final
class Table(FundamentalComponent):
"""
Display & input for tabular data.
Display for tabular data.
Tables are a way to display data in a grid, with rows and columns. They are
very useful for displaying data that is naturally tabular, such as
spreadsheets, databases, or CSV files. Tables can be sorted by clicking on
the column headers.
well suited for displaying data that is naturally tabular, such as
spreadsheets, databases, or CSV files.
## Attributes