Skip to content

Commit

Permalink
Fix mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
grihabor committed Dec 23, 2024
1 parent f5df270 commit 4b8a446
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-support/bin/external_tool_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def _parse_k8s_xml(text: str) -> Iterator[str]:
raise RuntimeError("Failed to parse xml, did it change?")

key = key_element.text
if regex.match(key):
if key and regex.match(key):
yield f"https://cdn.dl.k8s.io/{key}"


Expand Down

0 comments on commit 4b8a446

Please sign in to comment.