Skip to content

Commit 8af4566

Browse files
committed
Remove unused noqa: BLE001 directives (RUF100)
1 parent 0d5cea0 commit 8af4566

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/k8s_lib_injection/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,11 @@ def run_https_probe_pod(
7373
logs = ""
7474
try:
7575
logs = api.read_namespaced_pod_log(name=name, namespace=namespace)
76-
except Exception as e: # noqa: BLE001
76+
except Exception as e:
7777
logger.warning(f"[HTTPS probe] could not read probe pod logs: {e}")
7878
return phase, logs
7979
finally:
8080
try:
8181
api.delete_namespaced_pod(name=name, namespace=namespace)
82-
except Exception as e: # noqa: BLE001
82+
except Exception as e:
8383
logger.warning(f"[HTTPS probe] could not delete probe pod: {e}")

0 commit comments

Comments
 (0)