diff options
author | Martin Czygan <martin@archive.org> | 2020-07-24 10:11:37 +0000 |
---|---|---|
committer | Martin Czygan <martin@archive.org> | 2020-07-24 10:11:37 +0000 |
commit | 8b00843af1366cf019c896057706ace4afff27ba (patch) | |
tree | 86fc58bf26f07e272aa27e989f3ab6b4cfef2090 /python/tests/import_ingest.py | |
parent | 2170e5ff46dfb2bba9bf26196de3c3774c16cd4a (diff) | |
parent | fc93f35996cab23984d9a45f1a411b8776e437bf (diff) | |
download | fatcat-8b00843af1366cf019c896057706ace4afff27ba.tar.gz fatcat-8b00843af1366cf019c896057706ace4afff27ba.zip |
Merge branch 'bnewbold-more-lint-fixes' into 'master'
more lint fixes
See merge request webgroup/fatcat!69
Diffstat (limited to 'python/tests/import_ingest.py')
-rw-r--r-- | python/tests/import_ingest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/tests/import_ingest.py b/python/tests/import_ingest.py index ebe2923c..4a46232a 100644 --- a/python/tests/import_ingest.py +++ b/python/tests/import_ingest.py @@ -63,7 +63,7 @@ def test_ingest_importer_stage(ingest_importer, api): eg = quick_eg(api) r1 = api.lookup_release(doi="10.123/abc") r1.release_stage = row['release_stage'] - c1 = api.update_release(eg.editgroup_id, r1.ident, r1) + api.update_release(eg.editgroup_id, r1.ident, r1) api.accept_editgroup(eg.editgroup_id) # set ingest request stage |