about summary refs log tree commit diff
path: root/gn3/jobs.py
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2025-02-28 13:14:58 -0600
committerFrederick Muriuki Muriithi2025-02-28 13:14:58 -0600
commit82f1d0da007019d949a39408c45425e00b22aa34 (patch)
treeaa6ed8bba4336317621043a3e1e7edc30433c6bf /gn3/jobs.py
parentf3a6c0adc3e5cb78c1a663fc686f00853729b5d7 (diff)
downloadgenenetwork3-82f1d0da007019d949a39408c45425e00b22aa34.tar.gz
Fix issues caught by mypy.
Diffstat (limited to 'gn3/jobs.py')
-rw-r--r--gn3/jobs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gn3/jobs.py b/gn3/jobs.py
index 1af63f7..898517c 100644
--- a/gn3/jobs.py
+++ b/gn3/jobs.py
@@ -24,7 +24,7 @@ def job(redisconn: Redis, job_id: UUID) -> Either:
     if the_job:
         return Right({
             key: json.loads(value, object_hook=jed.custom_json_decoder)
-            for key, value in the_job.items()
+            for key, value in the_job.items()# type: ignore[union-attr]
         })
     return Left({
         "error": "NotFound",