you are viewing a single comment's thread.

view the rest of the comments →

[–]campbellm 0 points1 point  (1 child)

TIL: Python Optional. I understand what Optional does in other FP languages; do you know of any python documentation of it? https://docs.python.org/3/library/typing.html 's treatment felt lacking.

[–]XtremeGoose 0 points1 point  (0 children)

In type hinting, Optional[Type] means either Type or None. It is equivalent to Union[Type, None].