diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-28 22:46:30 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-28 22:46:30 -0800 |
commit | 6f8410f4f77a7724081e5573f904bebb3b68b7c1 (patch) | |
tree | f1a2ece6d58769e5bb0f0a06434c168a538afaf6 /python/fatcat_tools/importers | |
parent | ee5640e80f4ab6b8a66009c54e4bc4dca10c17f4 (diff) | |
download | fatcat-6f8410f4f77a7724081e5573f904bebb3b68b7c1.tar.gz fatcat-6f8410f4f77a7724081e5573f904bebb3b68b7c1.zip |
add stub parse_record() to make pylint happy
Diffstat (limited to 'python/fatcat_tools/importers')
-rw-r--r-- | python/fatcat_tools/importers/common.py | 4 |
1 files changed, 4 insertions, 0 deletions
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) |