diff options
author | Bryan Newbold <bnewbold@archive.org> | 2021-12-15 16:49:26 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2021-12-15 16:49:26 -0800 |
commit | 616ceaea547394bdb5164112219eaf3e7dff4aa0 (patch) | |
tree | 20afc018a3beecba599bb720d7facb4ac9dfaaab | |
parent | 443148d51d26f28fe8d5a123c2aa8272a21ebc4f (diff) | |
download | sandcrawler-616ceaea547394bdb5164112219eaf3e7dff4aa0.tar.gz sandcrawler-616ceaea547394bdb5164112219eaf3e7dff4aa0.zip |
lint: ignore unused 'sentry_client'
-rwxr-xr-x | python/ingest_tool.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/ingest_tool.py b/python/ingest_tool.py index 0101283..ce3a59c 100755 --- a/python/ingest_tool.py +++ b/python/ingest_tool.py @@ -48,7 +48,7 @@ def run_requests(args): git_sha = raven.fetch_git_sha("..") except Exception: git_sha = None - sentry_client = raven.Client(release=git_sha) + sentry_client = raven.Client(release=git_sha) # noqa: # TODO: switch to using JsonLinePusher file_worker = IngestFileWorker( try_spn2=not args.no_spn2, |