about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2026-02-18 10:38:34 -0600
committerFrederick Muriuki Muriithi2026-02-18 10:38:34 -0600
commitc1c835c274a2cf25a1b5ac78806ddefd6baa8368 (patch)
treeaa020678a77ab21f91fcb6b755a59cab156cea0b
parent9b6f862497749b387d6fd99771ec14775fe97b00 (diff)
downloadgn-uploader-main.tar.gz
Type-Checking: Add type hints for variable. HEAD main
-rw-r--r--uploader/phenotypes/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/uploader/phenotypes/views.py b/uploader/phenotypes/views.py
index ab3b3d2..ce73c89 100644
--- a/uploader/phenotypes/views.py
+++ b/uploader/phenotypes/views.py
@@ -1262,7 +1262,7 @@ def delete_phenotypes(# pylint: disable=[unused-argument, too-many-locals]
                         loglevel=_loglevel)
                 ).either(__handle_error__, proceed_to_job_status)
             case _:
-                _phenos = tuple()
+                _phenos: tuple[dict, ...] = tuple()
                 if len(xref_ids) > 0:
                     _phenos = dataset_phenotypes(
                         conn, population["Id"], dataset["Id"], xref_ids=xref_ids)