From f83553be9ee29595b007f9e0ba990d535942e6b1 Mon Sep 17 00:00:00 2001 From: Adam Hopkins Date: Mon, 12 Dec 2022 15:12:47 +0200 Subject: [PATCH] Remove unused import --- sanic/application/ext.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/sanic/application/ext.py b/sanic/application/ext.py index 54206c24..0f4bdfb1 100644 --- a/sanic/application/ext.py +++ b/sanic/application/ext.py @@ -8,11 +8,6 @@ from typing import TYPE_CHECKING if TYPE_CHECKING: from sanic import Sanic - try: - from sanic_ext import Extend # type: ignore - except ImportError: - ... - def setup_ext(app: Sanic, *, fail: bool = False, **kwargs): if not app.config.AUTO_EXTEND: