From 2f90a85df1eea71321f1a2e0aee14ef7d22e910d Mon Sep 17 00:00:00 2001 From: Mary Date: Thu, 16 Jun 2022 21:38:13 +0900 Subject: [PATCH] feat(type): extend (#2466) Co-authored-by: Adam Hopkins --- sanic/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sanic/app.py b/sanic/app.py index 52892669..c928f028 100644 --- a/sanic/app.py +++ b/sanic/app.py @@ -97,7 +97,7 @@ if TYPE_CHECKING: # no cov from sanic_ext import Extend # type: ignore from sanic_ext.extensions.base import Extension # type: ignore except ImportError: - Extend = TypeVar("Extend") # type: ignore + Extend = TypeVar("Extend", Type) # type: ignore if OS_IS_WINDOWS: # no cov