From 6ef2cf0331a81097218ac0fcedcd7b4664191adf Mon Sep 17 00:00:00 2001 From: Zach Waggoner Date: Fri, 21 Aug 2020 04:41:51 -0500 Subject: [PATCH] Add force_color parameter to django.core.management.color.color_style (#448) --- django-stubs/core/management/color.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django-stubs/core/management/color.pyi b/django-stubs/core/management/color.pyi index 0fc0d6a..7d39bc5 100644 --- a/django-stubs/core/management/color.pyi +++ b/django-stubs/core/management/color.pyi @@ -22,4 +22,4 @@ class Style: def make_style(config_string: str = ...) -> Style: ... def no_style() -> Style: ... -def color_style() -> Style: ... +def color_style(force_color: bool = ...) -> Style: ...