Skip to content

Commit cf6952c

Browse files
Fix type of MigrationLoader.applied_migrations (#656)
Co-authored-by: Darius Marian <[email protected]>
1 parent 0c3252f commit cf6952c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

django-stubs/db/migrations/loader.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ MIGRATIONS_MODULE_NAME: str
1616
class MigrationLoader:
1717
connection: Optional[BaseDatabaseWrapper] = ...
1818
disk_migrations: Dict[Tuple[str, str], Migration] = ...
19-
applied_migrations: Set[Tuple[str, str]] = ...
19+
applied_migrations: Dict[Tuple[str, str], Migration] = ...
2020
ignore_no_migrations: bool = ...
2121
def __init__(
2222
self, connection: Optional[BaseDatabaseWrapper], load: bool = ..., ignore_no_migrations: bool = ...

0 commit comments

Comments
 (0)