Skip to content

Commit 564ee59

Browse files
committed
style(setup): Format code
1 parent b445832 commit 564ee59

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Project/backend/codebase/common/dependencies.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ async def get_db_session(request: Request) -> AsyncGenerator[AsyncSession, None]
1616
yield session
1717
finally:
1818
await session.commit()
19-
await session.close()
19+
await session.close()

Project/backend/codebase/monitoring/models/monitoring.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
class HealthCheck(Base, TrackedModel):
55
__tablename__ = "healthcheck"
6-
__table_args__ = {'extend_existing': True}
6+
__table_args__ = {"extend_existing": True}

Project/backend/scripts/format.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
APP_PATH="codebase"
44

55
ruff $APP_PATH --fix
6-
black $APP_PATH
6+
black $APP_PATH --exclude "migrations"

Project/backend/scripts/lint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
APP_PATH="codebase"
44

55
ruff $APP_PATH
6-
black $APP_PATH --check
6+
black $APP_PATH --check --exclude "migrations"

0 commit comments

Comments
 (0)