Skip to content

Commit 49b8512

Browse files
committed
format
1 parent b10665c commit 49b8512

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
lines changed

app/api/health.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
router = APIRouter()
1313

1414

15-
16-
1715
@router.get("/redis", status_code=status.HTTP_200_OK)
1816
async def redis_check(request: Request):
1917
"""

app/models/shakespeare.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -259,9 +259,7 @@ class Paragraph(Base):
259259
char_count: Mapped[int] = mapped_column(Integer)
260260
word_count: Mapped[int] = mapped_column(Integer)
261261

262-
character: Mapped[Character] = relationship(
263-
"Character", back_populates="paragraph"
264-
)
262+
character: Mapped[Character] = relationship("Character", back_populates="paragraph")
265263
chapter: Mapped[Chapter] = relationship("Chapter", back_populates="paragraph")
266264
work: Mapped[Work] = relationship("Work", back_populates="paragraph")
267265

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ dependencies = [
3434

3535
[tool.uv]
3636
dev-dependencies = [
37-
"ruff>=0.14.5",
38-
"devtools[pygments]>=0.12.2",
37+
"ruff==0.14.5",
38+
"devtools[pygments]==0.12.2",
3939
"pyupgrade==3.21.1",
4040
"ipython==9.7.0",
4141
"tryceratops==2.4.1",

uv.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)