about summary refs log tree commit diff
path: root/gn3/jobs.py
diff options
context:
space:
mode:
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",