Skip to content

Commit

Permalink
fix applied_migrations typing of recorder.pyi
Browse files Browse the repository at this point in the history
  • Loading branch information
gg-mmill authored Mar 12, 2024
1 parent 7e36372 commit ba2a979
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django-stubs/db/migrations/recorder.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class MigrationRecorder:
def migration_qs(self) -> QuerySet[Any]: ...
def has_table(self) -> bool: ...
def ensure_schema(self) -> None: ...
def applied_migrations(self) -> set[tuple[str, str]]: ...
def applied_migrations(self) -> dict[tuple[str, str], Any]: ...
def record_applied(self, app: str, name: str) -> None: ...
def record_unapplied(self, app: str, name: str) -> None: ...
def flush(self) -> None: ...

0 comments on commit ba2a979

Please sign in to comment.