Skip to content

Commit add0f4c

Browse files
committed
fix(evalhub): add missing type annotation for admin_client parameter
Signed-off-by: Rui Vieira <ruidevieira@googlemail.com>
1 parent 6c43426 commit add0f4c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/model_explainability/evalhub/test_evalhub_deployment.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import pytest
2+
from kubernetes.dynamic import DynamicClient
23
from ocp_resources.deployment import Deployment
34
from ocp_resources.namespace import Namespace
45
from ocp_resources.pod import Pod
@@ -27,7 +28,7 @@ class TestEvalHubDeployment:
2728

2829
def test_evalhub_single_pod_single_container(
2930
self,
30-
admin_client,
31+
admin_client: DynamicClient,
3132
model_namespace: Namespace,
3233
evalhub_deployment: Deployment,
3334
) -> None:

0 commit comments

Comments
 (0)