diff --git a/downloads/views.py b/downloads/views.py index a3255425d..084e46b7d 100644 --- a/downloads/views.py +++ b/downloads/views.py @@ -199,10 +199,7 @@ def items(self) -> list[dict[str, Any]]: @staticmethod def _fetch_releases(url: str) -> list[dict[str, Any]]: - """Grabs the latest Python releases from API. - - - """ + """Grabs the latest Python releases from API.""" response = requests.get(url, timeout=10) response.raise_for_status() data = response.json()