Skip to content

Commit

Permalink
OPTIONS cannot be None given our code
Browse files Browse the repository at this point in the history
As per the notes in #218
  • Loading branch information
palfrey committed Nov 8, 2023
1 parent 44bfba5 commit bb1fd0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dj_database_url/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit bb1fd0c

Please sign in to comment.