Remove unused TypeVar from config.py (#108495)

This commit is contained in:
Erik Montnemery 2024-01-20 20:39:12 +01:00 committed by GitHub
parent 2b90d968b4
commit 88dfe8d33b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,7 +14,7 @@ from pathlib import Path
import re
import shutil
from types import ModuleType
from typing import TYPE_CHECKING, Any, TypeVar
from typing import TYPE_CHECKING, Any
from urllib.parse import urlparse
from awesomeversion import AwesomeVersion
@ -147,9 +147,6 @@ class ConfigExceptionInfo:
integration_link: str | None
_T = TypeVar("_T")
@dataclass
class IntegrationConfigInfo:
"""Configuration for an integration and exception information."""