Skip to content

Commit

Permalink
db/models/fields/__init__.pyi: Black format (#239)
Browse files Browse the repository at this point in the history
Black wants to add a trailing comma to the multiline arguments.

Produced by running `./s/lint`.
  • Loading branch information
noelleleigh authored May 4, 2024
1 parent d864736 commit e10857e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions django-stubs/db/models/fields/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ class SlugField(CharField[_C]):
db_tablespace: str | None = ...,
validators: Iterable[_ValidatorCallable] = ...,
error_messages: _ErrorMessagesToOverride | None = ...,
allow_unicode: bool = ...
allow_unicode: bool = ...,
) -> SlugField[str]: ...
@overload
def __new__(
Expand All @@ -747,7 +747,7 @@ class SlugField(CharField[_C]):
db_tablespace: str | None = ...,
validators: Iterable[_ValidatorCallable] = ...,
error_messages: _ErrorMessagesToOverride | None = ...,
allow_unicode: bool = ...
allow_unicode: bool = ...,
) -> SlugField[str | None]: ...

class EmailField(CharField[_C]):
Expand Down

0 comments on commit e10857e

Please sign in to comment.