From ae2886bc59ce4eb32d79f4d146fa355135f65adb Mon Sep 17 00:00:00 2001 From: Bryann Valderrama Date: Tue, 17 Sep 2024 16:57:03 -0500 Subject: [PATCH] chore: add pylint statement --- eox_core/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eox_core/urls.py b/eox_core/urls.py index 793e13c3f..f6a066492 100644 --- a/eox_core/urls.py +++ b/eox_core/urls.py @@ -7,7 +7,7 @@ app_name = 'eox_core' # pylint: disable=invalid-name -urlpatterns = [ +urlpatterns = [ # pylint: disable=invalid-name re_path(r'^eox-info$', views.info_view, name='eox-info'), re_path(r'^api/', include('eox_core.api.urls', namespace='eox-api')), re_path(r'^data-api/', include('eox_core.api.data.v1.urls', namespace='eox-data-api')),