summaryrefslogtreecommitdiff
path: root/shared/alembic/versions/003_add_missing_indexes.py
diff options
context:
space:
mode:
authorTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2026-04-02 15:54:55 +0900
committerTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2026-04-02 15:54:55 +0900
commitbf4afbc0a3cc4e847ef01840365fd6a6ae9c142f (patch)
treec8634b3b21534f550e2d255d98c4a068a1b567d0 /shared/alembic/versions/003_add_missing_indexes.py
parentec8b6fea5a4a710df4b2ae18f3f399d165c8ffd4 (diff)
style: auto-fix lint violations from enhanced ruff rules
Diffstat (limited to 'shared/alembic/versions/003_add_missing_indexes.py')
-rw-r--r--shared/alembic/versions/003_add_missing_indexes.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/shared/alembic/versions/003_add_missing_indexes.py b/shared/alembic/versions/003_add_missing_indexes.py
index ff08789..7a252d4 100644
--- a/shared/alembic/versions/003_add_missing_indexes.py
+++ b/shared/alembic/versions/003_add_missing_indexes.py
@@ -5,14 +5,14 @@ Revises: 002
Create Date: 2026-04-02
"""
-from typing import Sequence, Union
+from collections.abc import Sequence
from alembic import op
revision: str = "003"
-down_revision: Union[str, None] = "002"
-branch_labels: Union[str, Sequence[str], None] = None
-depends_on: Union[str, Sequence[str], None] = None
+down_revision: str | None = "002"
+branch_labels: str | Sequence[str] | None = None
+depends_on: str | Sequence[str] | None = None
def upgrade() -> None: