Skip to content

Commit

Permalink
Add missing type hint in docs (#13478)
Browse files Browse the repository at this point in the history
`subject='',`  -> `subject: str = '',`
  • Loading branch information
BioGeek authored Aug 22, 2022
1 parent aa285e3 commit 6208400
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/cheat_sheet_py3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ Python 3 supports an annotation syntax for function declarations.
sender: str,
cc: Optional[list[str]],
bcc: Optional[list[str]],
subject='',
subject: str = '',
body: Optional[list[str]] = None
) -> bool:
...
Expand Down

0 comments on commit 6208400

Please sign in to comment.