Skip to content

Commit 36af806

Browse files
chore: auto fixes from pre-commit.com hooks
1 parent 4e09a8b commit 36af806

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
@@ -316,7 +316,7 @@ def get_version_warning() -> str:
316316
"https://api.github.com/repos/ansible/ansible-lint/releases/latest"
317317
)
318318
try:
319-
with urllib.request.urlopen(release_url) as url: # noqa: S310
319+
with urllib.request.urlopen(release_url) as url:
320320
data = json.load(url)
321321
with open(cache_file, "w", encoding="utf-8") as f:
322322
json.dump(data, f)

0 commit comments

Comments
 (0)