From bb1fd0cbc60774471f880cd86e1f0e731b4b26f6 Mon Sep 17 00:00:00 2001 From: Tom Parker-Shemilt Date: Wed, 8 Nov 2023 22:40:45 +0000 Subject: [PATCH] OPTIONS cannot be None given our code As per the notes in https://github.com/jazzband/dj-database-url/issues/218 --- dj_database_url/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dj_database_url/__init__.py b/dj_database_url/__init__.py index 9cf9787..bb5f33a 100644 --- a/dj_database_url/__init__.py +++ b/dj_database_url/__init__.py @@ -44,7 +44,7 @@ class DBConfig(TypedDict, total=False): ENGINE: str HOST: str NAME: str - OPTIONS: Optional[Dict[str, Any]] + OPTIONS: Dict[str, Any] PASSWORD: str PORT: Union[str, int] TEST: Dict[str, Any]