From 6f8410f4f77a7724081e5573f904bebb3b68b7c1 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Mon, 28 Jan 2019 22:46:30 -0800 Subject: add stub parse_record() to make pylint happy --- python/fatcat_tools/importers/common.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/python/fatcat_tools/importers/common.py b/python/fatcat_tools/importers/common.py index d6d2e4e9..7c2ce400 100644 --- a/python/fatcat_tools/importers/common.py +++ b/python/fatcat_tools/importers/common.py @@ -179,6 +179,10 @@ class EntityImporter: self.push_entity(entity) return + def parse_record(self, raw_record): + # implementations should fill this in + raise NotImplementedError + def finish(self): if self._edit_count > 0: self.api.accept_editgroup(self._editgroup_id) -- cgit v1.2.3