Skip to content

Commit

Permalink
add explicit exports to migrations/auto/__init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dantownsend committed Dec 23, 2023
1 parent e2d8499 commit 3d9ed62
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions piccolo/apps/migrations/auto/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,11 @@
from .migration_manager import MigrationManager
from .schema_differ import AlterStatements, SchemaDiffer
from .schema_snapshot import SchemaSnapshot

__all__ = [
"DiffableTable",
"MigrationManager",
"AlterStatements",
"SchemaDiffer",
"SchemaSnapshot",
]

0 comments on commit 3d9ed62

Please sign in to comment.