diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-11-15 16:35:41 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-11-15 16:35:41 -0800 |
commit | f47260eff9e5905e412d33126607fbe0eadcde68 (patch) | |
tree | 0a0dfb53ebe98ae1a9e4946bfce02f7a6d473c4e /python/fatcat_tools/workers | |
parent | 1f0574bb0265fe7e06f5e327a57ce9575cb41d5d (diff) | |
download | fatcat-f47260eff9e5905e412d33126607fbe0eadcde68.tar.gz fatcat-f47260eff9e5905e412d33126607fbe0eadcde68.zip |
bunch of pylint cleanup
Diffstat (limited to 'python/fatcat_tools/workers')
-rw-r--r-- | python/fatcat_tools/workers/changelog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_tools/workers/changelog.py b/python/fatcat_tools/workers/changelog.py index e64c043b..e803e2d0 100644 --- a/python/fatcat_tools/workers/changelog.py +++ b/python/fatcat_tools/workers/changelog.py @@ -27,7 +27,7 @@ class ChangelogWorker(FatcatWorker): # topic if self.offset is None: print("Checking for most recent changelog offset...") - msg = self.most_recent_message(topic) + msg = most_recent_message(topic) if msg: self.offset = json.loads(msg.decode('utf-8'))['index'] else: |