diff --git a/packages/settings-library/tests/test_base.py b/packages/settings-library/tests/test_base.py index aa1ffa95a23..7cbd9fa8773 100644 --- a/packages/settings-library/tests/test_base.py +++ b/packages/settings-library/tests/test_base.py @@ -4,7 +4,6 @@ # pylint: disable=too-many-arguments # pylint: disable=protected-access -import inspect import json from collections.abc import Callable from typing import Any @@ -310,7 +309,6 @@ def test_issubclass_type_error_with_pydantic_models(): # TypeError: issubclass() arg 1 must be a class # - assert inspect.isclass(dict[str, str]) assert not issubclass(dict, BaseSettings) # NOTE: this should be fixed by pydantic at some point. When this happens, this test will fail