aboutsummaryrefslogtreecommitdiffstats
path: root/botcore/utils/function.py
diff options
context:
space:
mode:
Diffstat (limited to 'botcore/utils/function.py')
-rw-r--r--botcore/utils/function.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/botcore/utils/function.py b/botcore/utils/function.py
index 0e90d4c5..d89163ec 100644
--- a/botcore/utils/function.py
+++ b/botcore/utils/function.py
@@ -11,8 +11,7 @@ __all__ = ["command_wraps", "GlobalNameConflictError", "update_wrapper_globals"]
if typing.TYPE_CHECKING:
- import typing_extensions
- _P = typing_extensions.ParamSpec("_P")
+ _P = typing.ParamSpec("_P")
_R = typing.TypeVar("_R")