Skip to content

Commit

Permalink
Remove extraneous spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
UnknownPlatypus committed Oct 13, 2023
1 parent 8824590 commit fdc0ba9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions django-stubs/db/backends/mysql/base.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ class DatabaseWrapper(BaseDatabaseWrapper):
def check_constraints(self, table_names: Any | None = ...) -> None: ...
def is_usable(self) -> bool: ...
@property
def display_name(self) -> str: ... # type: ignore [override]
def display_name(self) -> str: ... # type: ignore[override]
@property
def data_type_check_constraints(self) -> dict[str, str]: ... # type: ignore [override]
def data_type_check_constraints(self) -> dict[str, str]: ... # type: ignore[override]
@property
def mysql_server_data(self) -> dict[str, Any]: ...
@property
Expand Down
2 changes: 1 addition & 1 deletion django-stubs/db/backends/mysql/features.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class DatabaseFeatures(BaseDatabaseFeatures):
@cached_property
def can_introspect_foreign_keys(self) -> bool: ... # type: ignore[override]
@cached_property
def introspected_field_types(self) -> dict[str, str]: ... # type: ignore [override]
def introspected_field_types(self) -> dict[str, str]: ... # type: ignore[override]
@cached_property
def can_return_columns_from_insert(self) -> bool: ... # type: ignore[override]
@cached_property
Expand Down

0 comments on commit fdc0ba9

Please sign in to comment.