Skip to content

Commit bc887c2

Browse files
committed
chore: improvements
1 parent 89c53fa commit bc887c2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/litestar_start/backends/litestar/templates/app/main.py.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ async def health() -> dict[str, str]:
2121
{% block app_config %}
2222

2323
app = Litestar(
24-
route_handlers=[health, base_controller],
24+
route_handlers=[health, BaseController],
2525
cors_config=CORSConfig(allow_origins=settings.ALLOWED_ORIGINS),
2626
debug=settings.DEBUG,
2727
)

src/litestar_start/backends/litestar/templates/pyproject.toml.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ line-length = 120
2121

2222
[tool.ruff.lint]
2323
select = ["ALL"]
24-
ignore = []
24+
ignore = ["CPY001", "D100", "D104"]
2525

2626
[tool.pytest.ini_options]
2727
testpaths = ["tests"]

0 commit comments

Comments
 (0)