mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
feat: init assignment subpages and misc python and ts improvements
This commit is contained in:
parent
e9caa2ceb4
commit
dab80069d4
19 changed files with 109 additions and 49 deletions
|
|
@ -1,7 +1,7 @@
|
|||
import importlib
|
||||
from logging.config import fileConfig
|
||||
import os
|
||||
import alembic_postgresql_enum
|
||||
import alembic_postgresql_enum # noqa: F401
|
||||
from sqlalchemy import engine_from_config
|
||||
from sqlalchemy import pool
|
||||
from sqlmodel import SQLModel
|
||||
|
|
|
|||
|
|
@ -8,8 +8,8 @@ Create Date: ${create_date}
|
|||
from typing import Sequence, Union
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
import sqlmodel
|
||||
import sqlalchemy as sa # noqa: F401
|
||||
import sqlmodel # noqa: F401
|
||||
${imports if imports else ""}
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
|
|
|
|||
|
|
@ -8,8 +8,8 @@ Create Date: 2024-07-11 20:46:26.582170
|
|||
from typing import Sequence, Union
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
import sqlmodel
|
||||
import sqlalchemy as sa # noqa: F401
|
||||
import sqlmodel # noqa: F401
|
||||
from alembic_postgresql_enum import TableReference # type: ignore
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ from typing import Sequence, Union
|
|||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
import sqlmodel
|
||||
import sqlmodel # noqa: F401
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
|
|
|
|||
|
|
@ -8,9 +8,9 @@ Create Date: 2024-07-11 19:33:37.993767
|
|||
from typing import Sequence, Union
|
||||
|
||||
from alembic import op
|
||||
from grpc import server
|
||||
from grpc import server # noqa: F401
|
||||
import sqlalchemy as sa
|
||||
import sqlmodel
|
||||
import sqlmodel # noqa: F401
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue