Skip to content

Commit 22c6561

Browse files
committed
chore: run ruff format
Signed-off-by: Tomas Sanchez <tosanchez@frba.utn.edu.ar>
1 parent 67d2cad commit 22c6561

File tree

14 files changed

+15
-2
lines changed

14 files changed

+15
-2
lines changed

src/template/domain/events/monitor.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Events related to the monitoring of the application.
33
"""
4+
45
from typing import Literal
56

67
from pydantic import Field

src/template/entrypoint/monitor.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
33
Responsible for probing the system liveness and readiness.
44
"""
5+
56
from fastapi import APIRouter, status
67
from starlette.responses import RedirectResponse
78

src/template/main.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Applicant Main File.
33
"""
4+
45
from fastapi import FastAPI
56

67
from template.asgi import get_application

src/template/router.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
Resources:
66
1. https://fastapi.tiangolo.com/tutorial/bigger-applications
77
"""
8+
89
from fastapi import APIRouter
910

1011
from template.entrypoint import monitor

src/template/service_layer/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
1212
This is the kind of boring work that has to happen for every operation in your system, and keeping it separate from
1313
business logic helps to keep things tidy.
14-
"""
14+
"""

src/template/settings/api_settings.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
API Settings
33
"""
4+
45
from pydantic import BaseModel, EmailStr, HttpUrl
56
from pydantic_settings import BaseSettings, SettingsConfigDict
67

src/template/utils/formatting.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Formatting utilities.
33
"""
4+
45
from re import sub
56

67

tests/conftest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Pytest Fixtures.
33
"""
4+
45
import pytest
56
from starlette.testclient import TestClient
67

tests/e2e/entrypoint/test_monitor.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Test Cases for Monitor Entrypoint.
33
"""
4+
45
import pytest
56
from fastapi import status
67

tests/unit/domain/test_schemas.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Test suite for Schemas
33
"""
4+
45
from template.domain.schemas import CamelCaseModel, ResponseModel
56

67

0 commit comments

Comments
 (0)