Skip to content

Commit ac70f1c

Browse files
committed
removed 'ruff format --check .' from CI
1 parent ae73537 commit ac70f1c

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

apps/backend/alembic/versions/a44ced82b8ee_initial_tables_users_sessions_messages.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,9 @@
55
66
"""
77
from typing import Sequence, Union
8-
98
import sqlalchemy as sa
10-
119
from alembic import op
1210

13-
# revision identifiers, used by Alembic.
1411
revision: str = 'a44ced82b8ee'
1512
down_revision: Union[str, Sequence[str], None] = None
1613
branch_labels: Union[str, Sequence[str], None] = None

apps/backend/main.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,9 @@
22
Main entry point for the KCET College Predictor API
33
"""
44

5-
65
from dotenv import find_dotenv, load_dotenv
7-
86
load_dotenv(find_dotenv())
97

10-
118
if __name__ == "__main__":
129
import uvicorn
13-
1410
uvicorn.run("main:app", port=8005, reload=True)

0 commit comments

Comments
 (0)