diff options
author | Bryan Newbold <bnewbold@archive.org> | 2021-10-26 18:21:42 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2021-10-26 18:21:42 -0700 |
commit | aa6e41fa33bd1e0a321acb2e07a701e996a3652e (patch) | |
tree | 4d15c08b81696ab45db7668b07717e99e5cad7f7 /python | |
parent | fdbc1383db4204ecdf27294dcca40dd04e0c214f (diff) | |
download | sandcrawler-aa6e41fa33bd1e0a321acb2e07a701e996a3652e.tar.gz sandcrawler-aa6e41fa33bd1e0a321acb2e07a701e996a3652e.zip |
small type annotation hack
Diffstat (limited to 'python')
-rw-r--r-- | python/sandcrawler/ingest_fileset.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/sandcrawler/ingest_fileset.py b/python/sandcrawler/ingest_fileset.py index 29a9ebd..47a19b8 100644 --- a/python/sandcrawler/ingest_fileset.py +++ b/python/sandcrawler/ingest_fileset.py @@ -382,7 +382,7 @@ class IngestFilesetWorker(IngestFileWorker): if result[ 'status'] == 'success-file' and archive_result.file_resource and archive_result.file_file_meta: - file_result = dict( + file_result: Dict[str, Any] = dict( hit=True, status='success', request=request.copy(), |