Skip to content

Commit af12c09

Browse files
chore: auto fixes from pre-commit.com hooks
1 parent f3f162b commit af12c09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ansiblelint/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ def get_version_warning() -> str:
315315
"https://api.github.com/repos/ansible/ansible-lint/releases/latest"
316316
)
317317
try:
318-
with urllib.request.urlopen(release_url) as url: # noqa: S310
318+
with urllib.request.urlopen(release_url) as url:
319319
data = json.load(url)
320320
with open(cache_file, "w", encoding="utf-8") as f:
321321
json.dump(data, f)

0 commit comments

Comments
 (0)