Skip to content

Commit

Permalink
fix: update import in env.py (#107)
Browse files Browse the repository at this point in the history
Update import in env.py

This import causes a race condition when running `make apply-schema-changes`. The modified import doesn't rely on the `model` directory, so it will fix the race condition.
  • Loading branch information
ebezzi authored Sep 26, 2024
1 parent 56cab4c commit 791d439
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ from logging.config import fileConfig
from alembic import context
from sqlalchemy import create_engine

from database.models import meta
from platformics.database.models import meta
from platformics.settings import CLISettings

# this is the Alembic Config object, which provides
Expand Down

0 comments on commit 791d439

Please sign in to comment.