Skip to content

Commit

Permalink
Fix type of MigrationLoader.applied_migrations (#656)
Browse files Browse the repository at this point in the history
Co-authored-by: Darius Marian <[email protected]>
  • Loading branch information
darius-blink and darius98 authored Jun 30, 2021
1 parent 0c3252f commit cf6952c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django-stubs/db/migrations/loader.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ...
Expand Down

0 comments on commit cf6952c

Please sign in to comment.