diff options
| author | Frederick Muriuki Muriithi | 2025-10-22 15:20:27 -0500 |
|---|---|---|
| committer | Frederick Muriuki Muriithi | 2025-10-22 15:20:27 -0500 |
| commit | 8fd92f3c72da4de1aa1a912954df36ebdfa46079 (patch) | |
| tree | 2ccd8e1c3c64081170ac64412a6c4e406bd61fa0 /gn3 | |
| parent | eb7f268bb88e89b1441df10c3ad796ccf8486f7b (diff) | |
| download | genenetwork3-8fd92f3c72da4de1aa1a912954df36ebdfa46079.tar.gz | |
typing: Fix type errors.
Diffstat (limited to 'gn3')
| -rw-r--r-- | gn3/computations/pca.py | 2 |
1 files changed, 1 insertions, 1 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]: |
