From 522c12b61e038871e1225945a5a76570c232a6a1 Mon Sep 17 00:00:00 2001 From: Jonathan Green Date: Fri, 6 Sep 2024 09:20:12 -0300 Subject: [PATCH] Fix import --- src/palace/manager/util/http.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/palace/manager/util/http.py b/src/palace/manager/util/http.py index 85f937386..628943ef9 100644 --- a/src/palace/manager/util/http.py +++ b/src/palace/manager/util/http.py @@ -4,7 +4,7 @@ import time from collections.abc import Callable, Mapping, Sequence from json import JSONDecodeError -from typing import TYPE_CHECKING, Any +from typing import Any from urllib.parse import urlparse import requests @@ -28,9 +28,6 @@ ProblemDetailException, ) -if TYPE_CHECKING: - pass - class RemoteIntegrationException(IntegrationException, BaseProblemDetailException): """An exception that happens when we try and fail to communicate