We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9b2548 commit 714942aCopy full SHA for 714942a
1 file changed
tests/cli/test_cli.py
@@ -19,6 +19,7 @@
19
from importlib import import_module
20
from pathlib import Path
21
from types import ModuleType, SimpleNamespace
22
+from typing import Any
23
from unittest.mock import Mock
24
25
import click
@@ -181,7 +182,7 @@ def test_pygments_lexer_entry_points_load() -> None:
181
182
assert getattr(module, attribute_name) is not None
183
184
-def _load_pyproject_config() -> dict[str, object]:
185
+def _load_pyproject_config() -> dict[str, Any]:
186
toml = (
187
import_module("tomllib")
188
if sys.version_info >= (3, 11)
0 commit comments