From a565bf1ecd9e630fde98b2c0d8129884bc380477 Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Sun, 6 Oct 2024 21:37:09 -0400 Subject: [PATCH] chore: Add noqa comment --- data_registry/urls.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data_registry/urls.py b/data_registry/urls.py index e5a1831..581f969 100644 --- a/data_registry/urls.py +++ b/data_registry/urls.py @@ -15,8 +15,8 @@ path("publication//download", views.download_export, name="download"), path("publications.json", views.publications_api, name="publications_api"), # Uncomment after re-integrating Spoonbill. - # > path("excel-data//", views.excel_data, name="excel-data"), - # > path("excel-data/", views.excel_data, name="all-excel-data"), + # path("excel-data//", views.excel_data, name="excel-data"), # noqa: ERA001 + # path("excel-data/", views.excel_data, name="all-excel-data"), # noqa: ERA001 # https://code.djangoproject.com/ticket/26556 path("i18n/setlang/", i18n.set_language, name="set-language"), path("sitemap.xml", sitemap, {"sitemaps": maps}, name="django.contrib.sitemaps.views.sitemap"),