diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 34a64a1..3fb6ad6 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -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" diff --git a/app/core/logging.py b/app/core/logging.py index 42da8d3..b3d0cf7 100644 --- a/app/core/logging.py +++ b/app/core/logging.py @@ -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 + ) diff --git a/app/main.py b/app/main.py index 58cdead..83d9658 100644 --- a/app/main.py +++ b/app/main.py @@ -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