Closed jtrmal closed 4 months ago
Seems to me (and to my editor) it shouldn't be rqmt: dict[str] but rqmt: Optional[typing.Dict[str, Any]] (since typically you have None as a default value ) Can you plz confirm if you care about me submitting a PR or not? Thanks!
rqmt: dict[str]
rqmt: Optional[typing.Dict[str, Any]]
Can confirm! I think for docstrings you can simply write dict[str, Any] | None though...
dict[str, Any] | None
yes pls, PR welcome.
Seems like this has been resolved in the master last week(?), closing. Apologies for the noise.
Seems to me (and to my editor) it shouldn't be
rqmt: dict[str]
butrqmt: Optional[typing.Dict[str, Any]]
(since typically you have None as a default value ) Can you plz confirm if you care about me submitting a PR or not? Thanks!