OPTIONS cannot be None given our code (#232)

As per the notes in https://github.com/jazzband/dj-database-url/issues/218
This commit is contained in:
Tom Parker-Shemilt 2023-12-09 09:41:09 +00:00 committed by GitHub
parent 0879f127b9
commit d23a2ca4c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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]