We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3f162b commit af12c09Copy full SHA for af12c09
src/ansiblelint/config.py
@@ -315,7 +315,7 @@ def get_version_warning() -> str:
315
"https://api.github.com/repos/ansible/ansible-lint/releases/latest"
316
)
317
try:
318
- with urllib.request.urlopen(release_url) as url: # noqa: S310
+ with urllib.request.urlopen(release_url) as url:
319
data = json.load(url)
320
with open(cache_file, "w", encoding="utf-8") as f:
321
json.dump(data, f)
0 commit comments