diff options
| author | Frederick Muriuki Muriithi | 2025-02-28 13:14:58 -0600 |
|---|---|---|
| committer | Frederick Muriuki Muriithi | 2025-02-28 13:14:58 -0600 |
| commit | 82f1d0da007019d949a39408c45425e00b22aa34 (patch) | |
| tree | aa6ed8bba4336317621043a3e1e7edc30433c6bf /gn3/jobs.py | |
| parent | f3a6c0adc3e5cb78c1a663fc686f00853729b5d7 (diff) | |
| download | genenetwork3-82f1d0da007019d949a39408c45425e00b22aa34.tar.gz | |
Fix issues caught by mypy.
Diffstat (limited to 'gn3/jobs.py')
| -rw-r--r-- | gn3/jobs.py | 2 |
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", |
