Skip to content

Commit 714942a

Browse files
committed
fix: tests
1 parent b9b2548 commit 714942a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/cli/test_cli.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
from importlib import import_module
2020
from pathlib import Path
2121
from types import ModuleType, SimpleNamespace
22+
from typing import Any
2223
from unittest.mock import Mock
2324

2425
import click
@@ -181,7 +182,7 @@ def test_pygments_lexer_entry_points_load() -> None:
181182
assert getattr(module, attribute_name) is not None
182183

183184

184-
def _load_pyproject_config() -> dict[str, object]:
185+
def _load_pyproject_config() -> dict[str, Any]:
185186
toml = (
186187
import_module("tomllib")
187188
if sys.version_info >= (3, 11)

0 commit comments

Comments
 (0)