Skip to content

Commit 0c2eb73

Browse files
committed
Fix linting errors
1 parent 8cbb0cb commit 0c2eb73

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/interop/test_validate_gpu_nodes.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import logging
22
import os
33
import re
4-
import subprocess
54

65
import pytest
76
from ocp_resources.pod import Pod
@@ -156,6 +155,6 @@ def test_validate_gpu_node_role_labels_pods(openshift_dyn_client):
156155
if len(nvidia_pods) == int(expected_count):
157156
logger.info("PASS: Found the expected nvidia pod count for GPU nodes")
158157
else:
159-
err_msg = f"Did not find the expected nvidia pod count for GPU nodes"
158+
err_msg = "Did not find the expected nvidia pod count for GPU nodes"
160159
logger.error(f"FAIL: {err_msg}")
161160
assert False, err_msg

0 commit comments

Comments
 (0)