We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27ad3b2 commit 2357041Copy full SHA for 2357041
exasol/toolbox/config.py
@@ -1,6 +1,7 @@
1
import inspect
2
from typing import (
3
Annotated,
4
+ Any,
5
)
6
7
from pydantic import (
@@ -18,7 +19,7 @@
18
19
from exasol.toolbox.util.version import Version
20
21
-def validate_plugin_hook(plugin_class: object):
22
+def validate_plugin_hook(plugin_class: type[Any]):
23
"""
24
Checks methods in a class for at least one specific pluggy @hookimpl marker
25
and verifies it is specified in `exasol.toolbox.nox.plugins.NoxTasks`.
0 commit comments