about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--gn3/computations/pca.py2
-rwxr-xr-xsetup.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/gn3/computations/pca.py b/gn3/computations/pca.py
index 4cc04a3..3b3041a 100644
--- a/gn3/computations/pca.py
+++ b/gn3/computations/pca.py
@@ -13,7 +13,7 @@ import redis
 
 from typing_extensions import TypeAlias
 
-fArray: TypeAlias = list[float]
+fArray: TypeAlias = list[float] # pylint: disable=[invalid-name]
 
 
 def compute_pca(array: list[fArray]) -> dict[str, Any]:
diff --git a/setup.py b/setup.py
index 52662a4..7ad60df 100755
--- a/setup.py
+++ b/setup.py
@@ -44,5 +44,5 @@ setup(author='Bonface M. K.',
           "pytest-mock"
       ],
       cmdclass={
-          "run_tests": RunTests ## testing
+          "run_tests": RunTests # type: ignore[dict-item]
       })