aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2021-12-15 16:49:26 -0800
committerBryan Newbold <bnewbold@archive.org>2021-12-15 16:49:26 -0800
commit616ceaea547394bdb5164112219eaf3e7dff4aa0 (patch)
tree20afc018a3beecba599bb720d7facb4ac9dfaaab /python
parent443148d51d26f28fe8d5a123c2aa8272a21ebc4f (diff)
downloadsandcrawler-616ceaea547394bdb5164112219eaf3e7dff4aa0.tar.gz
sandcrawler-616ceaea547394bdb5164112219eaf3e7dff4aa0.zip
lint: ignore unused 'sentry_client'
Diffstat (limited to 'python')
-rwxr-xr-xpython/ingest_tool.py2
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,