Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@ updates:
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
interval: "monthly"
day: "monday"
open-pull-requests-limit: 5
open-pull-requests-limit: 2
labels:
- "dependencies"
- "python"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
interval: "monthly"
day: "monday"
open-pull-requests-limit: 5
open-pull-requests-limit: 2
labels:
- "dependencies"
- "github-actions"
4 changes: 3 additions & 1 deletion app/core/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,6 @@ def configure_logging() -> None:
root.setLevel(level)

# Quiet down noisy third-party loggers
logging.getLogger("uvicorn.access").setLevel(logging.WARNING if not settings.debug else logging.INFO)
logging.getLogger("uvicorn.access").setLevel(
logging.WARNING if not settings.debug else logging.INFO
)
2 changes: 1 addition & 1 deletion app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

from __future__ import annotations

from collections.abc import AsyncIterator
from contextlib import asynccontextmanager
from typing import AsyncIterator

from fastapi import FastAPI

Expand Down
Loading