mirror of
https://github.com/jazzband/dj-database-url.git
synced 2026-03-16 22:20:24 +00:00
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:
parent
0879f127b9
commit
d23a2ca4c5
1 changed files with 1 additions and 1 deletions
|
|
@ -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]
|
||||
|
|
|
|||
Loading…
Reference in a new issue