aboutsummaryrefslogtreecommitdiff
path: root/gn_auth/jobs.py
diff options
context:
space:
mode:
Diffstat (limited to 'gn_auth/jobs.py')
-rw-r--r--gn_auth/jobs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gn_auth/jobs.py b/gn_auth/jobs.py
index 8f9f4f0..7cd5945 100644
--- a/gn_auth/jobs.py
+++ b/gn_auth/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
})
return Left({
"error": "NotFound",