From e10857e0870291b637d3ea9d6e0813c45f767c95 Mon Sep 17 00:00:00 2001 From: Noelle Leigh <5957867+noelleleigh@users.noreply.github.com> Date: Sat, 4 May 2024 17:49:23 -0400 Subject: [PATCH] `db/models/fields/__init__.pyi`: Black format (#239) Black wants to add a trailing comma to the multiline arguments. Produced by running `./s/lint`. --- django-stubs/db/models/fields/__init__.pyi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/django-stubs/db/models/fields/__init__.pyi b/django-stubs/db/models/fields/__init__.pyi index 326f168a2..aa7c1b160 100644 --- a/django-stubs/db/models/fields/__init__.pyi +++ b/django-stubs/db/models/fields/__init__.pyi @@ -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__( @@ -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]):