From 02cac8f857fe21474ab25aa7150bed2ac5b970d5 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Tue, 26 Oct 2021 13:54:35 -0700 Subject: flake8 clean (with current settings) --- python/sandcrawler/persist.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/sandcrawler/persist.py') diff --git a/python/sandcrawler/persist.py b/python/sandcrawler/persist.py index 44c03f2..b714bc7 100644 --- a/python/sandcrawler/persist.py +++ b/python/sandcrawler/persist.py @@ -578,7 +578,7 @@ class PersistThumbnailWorker(SandcrawlerWorker): assert isinstance(blob, bytes) assert len(blob) >= 50 - resp = self.s3.put_blob( + self.s3.put_blob( folder=self.s3_folder, blob=blob, sha1hex=key, @@ -619,7 +619,7 @@ class GenericPersistDocWorker(SandcrawlerWorker): if 'sha1hex' in record: assert key_str == record['sha1hex'] - resp = self.s3.put_blob( + self.s3.put_blob( folder=self.s3_folder, blob=record[self.doc_key].encode('utf-8'), sha1hex=key_str, -- cgit v1.2.3