From f6c3cfff37b562bdeca1fcd21ce72fe0675fed57 Mon Sep 17 00:00:00 2001 From: Taylor Salo Date: Mon, 25 Nov 2024 09:40:57 -0500 Subject: [PATCH] Ignore remaining ruff issues (#466) --- aslprep/config.py | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/aslprep/config.py b/aslprep/config.py index ab4beba7a..9bd92a649 100644 --- a/aslprep/config.py +++ b/aslprep/config.py @@ -149,7 +149,7 @@ # Just get so analytics track one hit from contextlib import suppress - from requests import ConnectionError, ReadTimeout + from requests import ConnectionError, ReadTimeout # noqa: A004 from requests import get as _get_url with suppress((ConnectionError, ReadTimeout)): diff --git a/pyproject.toml b/pyproject.toml index 6f3000df6..25d1edf50 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -148,6 +148,7 @@ extend-select = [ "Q", ] ignore = [ + "UP031", # TODO: Fix these "S311", # We are not using random for cryptographic purposes "ISC001", "S603",