Skip to content

Commit 76624a8

Browse files
committed
fix: break long line in utils.py to meet flake8 line length requirement
1 parent 4f30356 commit 76624a8

File tree

1 file changed

+4
-1
lines changed
  • tests/model_serving/model_server/llmd

1 file changed

+4
-1
lines changed

tests/model_serving/model_server/llmd/utils.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,10 @@ def verify_llmd_pods_not_restarted(client: DynamicClient, llm_service: LLMInfere
8585
for pod in Pod.get(
8686
dyn_client=client,
8787
namespace=llm_service.namespace,
88-
label_selector=f"{Pod.ApiGroup.APP_KUBERNETES_IO}/part-of=llminferenceservice,{Pod.ApiGroup.APP_KUBERNETES_IO}/name={llm_service.name}",
88+
label_selector=(
89+
f"{Pod.ApiGroup.APP_KUBERNETES_IO}/part-of=llminferenceservice,"
90+
f"{Pod.ApiGroup.APP_KUBERNETES_IO}/name={llm_service.name}"
91+
),
8992
):
9093
labels = pod.instance.metadata.get("labels", {})
9194
if labels.get("kserve.io/component") == "workload":

0 commit comments

Comments
 (0)