From d67a0357ab58a65692ce5a6d936f4dbb3c5ca646 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Mazzucotelli?= Date: Wed, 21 Aug 2024 17:25:28 +0200 Subject: [PATCH] wip --- tests/helpers.py | 2 +- tests/test_end_to_end.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/helpers.py b/tests/helpers.py index 26ab948..8d68186 100644 --- a/tests/helpers.py +++ b/tests/helpers.py @@ -6,13 +6,13 @@ from contextlib import contextmanager from typing import TYPE_CHECKING, Any, Iterator -import pytest from markdown.core import Markdown from mkdocs.config.defaults import MkDocsConfig if TYPE_CHECKING: from pathlib import Path + import pytest from mkdocstrings.plugin import MkdocstringsPlugin from mkdocstrings_handlers.python.handler import PythonHandler diff --git a/tests/test_end_to_end.py b/tests/test_end_to_end.py index c7c4861..85ec581 100644 --- a/tests/test_end_to_end.py +++ b/tests/test_end_to_end.py @@ -17,7 +17,7 @@ from mkdocstrings.handlers.python import PythonHandler -options = { +options: dict[str, Any] = { # General options. "find_stubs_package": (True, False), "allow_inspection": (True, False),