From 83bc674c24cd3087a11e130a84c07cc070a2a0a8 Mon Sep 17 00:00:00 2001
From: Phil Owen <19691521+PhillipsOwen@users.noreply.github.com>
Date: Tue, 19 Nov 2024 12:24:13 -0500
Subject: [PATCH] removing pylint exceptions
---
src/server.py | 8 --------
1 file changed, 8 deletions(-)
diff --git a/src/server.py b/src/server.py
index e8171d8..0321408 100644
--- a/src/server.py
+++ b/src/server.py
@@ -87,10 +87,6 @@ async def get_ui_data(grid_type: Union[str, None] = Query(default=None), event_t
use_new_wb: Use the new catalog workbench code
use_v3_sp: Use the new v3 data stored procedure
"""
- # pylint: disable=unused-argument
- # pylint: disable=too-many-arguments
- # pylint: disable=too-many-locals
-
# init the returned data and HTML status code
ret_val: dict = {}
status_code: int = 200
@@ -376,10 +372,6 @@ async def get_ui_data_file(file_name: Union[str, None] = Query(default='apsviz.j
use_new_wb: Use the new catalog workbench code
use_v3_sp: Use the new v3 data stored procedure
"""
- # pylint: disable=unused-argument
- # pylint: disable=too-many-arguments
- # pylint: disable=too-many-locals
-
# init the returned HTML status code
status_code: int = 200