Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/cheat_sheet_py3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ When you're puzzled or when things are complicated

.. code-block:: python

from typing import Union, Any, Optional, TYPE_CHECKING, cast
from typing import Any, TYPE_CHECKING, cast, reveal_type

# To find out what type mypy infers for an expression anywhere in
# your program, wrap it in reveal_type(). Mypy will print an error
Expand Down
Loading