mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-10 14:01:56 +08:00
Fix type of MigrationLoader.applied_migrations (#656)
Co-authored-by: Darius Marian <marian.darius98@gmail.com>
This commit is contained in:
@@ -16,7 +16,7 @@ MIGRATIONS_MODULE_NAME: str
|
||||
class MigrationLoader:
|
||||
connection: Optional[BaseDatabaseWrapper] = ...
|
||||
disk_migrations: Dict[Tuple[str, str], Migration] = ...
|
||||
applied_migrations: Set[Tuple[str, str]] = ...
|
||||
applied_migrations: Dict[Tuple[str, str], Migration] = ...
|
||||
ignore_no_migrations: bool = ...
|
||||
def __init__(
|
||||
self, connection: Optional[BaseDatabaseWrapper], load: bool = ..., ignore_no_migrations: bool = ...
|
||||
|
||||
Reference in New Issue
Block a user