Add two extra includes. For some reason this plugin causes GUI exceptions in prod, even though none of the other plugin GUIs do.

This commit is contained in:
Marsell Kukuljevic 2025-04-13 15:15:13 +02:00
parent a37a8c33b1
commit 1cba7d19e7
2 changed files with 4 additions and 0 deletions

View File

@ -8,6 +8,7 @@ from cmk.gui.plugins.wato.utils import (
rulespec_registry,
HostRulespec,
RulespecGroupCheckParametersNetworking,
CheckParameterRulespecWithItem
)
from cmk.gui.watolib.rulespecs import Rulespec
from cmk.gui.valuespec import (
@ -15,6 +16,7 @@ from cmk.gui.valuespec import (
Integer,
ListOfStrings,
Tuple,
TextInput
)

View File

@ -7,6 +7,7 @@ from cmk.gui.i18n import _
from cmk.gui.plugins.wato.utils import (
rulespec_registry,
HostRulespec,
CheckParameterRulespecWithItem,
RulespecGroupCheckParametersNetworking,
)
from cmk.gui.watolib.rulespecs import Rulespec
@ -17,6 +18,7 @@ from cmk.gui.valuespec import (
DropdownChoice,
Tuple,
ListOf,
TextInput
)