Skip to content

Commit fd3e0d1

Browse files
authored
Fix style argument of BaseDatabaseOperations.sql_flush
1 parent d5cc944 commit fd3e0d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

django-stubs/db/backends/base/operations.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class BaseDatabaseOperations:
6666
def savepoint_rollback_sql(self, sid: str) -> str: ...
6767
def set_time_zone_sql(self) -> str: ...
6868
def sql_flush(
69-
self, style: Any, tables: Sequence[str], *, reset_sequences: bool = ..., allow_cascade: bool = ...
69+
self, style: Style, tables: Sequence[str], *, reset_sequences: bool = ..., allow_cascade: bool = ...
7070
) -> list[str]: ...
7171
def execute_sql_flush(self, sql_list: Iterable[str]) -> None: ...
7272
def sequence_reset_by_name_sql(self, style: Style | None, sequences: list[Any]) -> list[Any]: ...

0 commit comments

Comments
 (0)