Skip to content

Commit 00ee414

Browse files
style: apply ruff --fix and ruff format
1 parent 7757a63 commit 00ee414

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

app/core/logging.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,6 @@ def configure_logging() -> None:
2626
root.setLevel(level)
2727

2828
# Quiet down noisy third-party loggers
29-
logging.getLogger("uvicorn.access").setLevel(logging.WARNING if not settings.debug else logging.INFO)
29+
logging.getLogger("uvicorn.access").setLevel(
30+
logging.WARNING if not settings.debug else logging.INFO
31+
)

app/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
from __future__ import annotations
88

9-
from contextlib import asynccontextmanager
109
from collections.abc import AsyncIterator
10+
from contextlib import asynccontextmanager
1111

1212
from fastapi import FastAPI
1313

0 commit comments

Comments
 (0)