From 4abb2cd850d0727af7137d60f8c85a4f5fb461fa Mon Sep 17 00:00:00 2001 From: Michael <65680649+michaelg100@users.noreply.github.com> Date: Sun, 30 Jun 2024 17:17:17 -0400 Subject: [PATCH] fix typo in runtime_troubles.rst --- docs/source/runtime_troubles.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/runtime_troubles.rst b/docs/source/runtime_troubles.rst index 66ab7b3a84c7..86439558f147 100644 --- a/docs/source/runtime_troubles.rst +++ b/docs/source/runtime_troubles.rst @@ -269,7 +269,7 @@ the class object can be subscripted at runtime without issue. Using types defined in stubs but not at runtime ----------------------------------------------- -Sometimes stubs that you're using may define types you wish to re-use that do +Sometimes stubs that you're using may define types you wish to reuse that do not exist at runtime. Importing these types naively will cause your code to fail at runtime with ``ImportError`` or ``ModuleNotFoundError``. Similar to previous sections, these can be dealt with by using :ref:`typing.TYPE_CHECKING