diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-29 15:36:55 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-29 15:36:55 -0800 |
commit | 6326f7e7941e62e9b374ddfc0447c98436242f5c (patch) | |
tree | d81f6e55e5085021f5a0737bd66527b2c804427e /python/fatcat_tools/importers/crossref.py | |
parent | 6dde672e1ac27737625416816f2d9134a80fd144 (diff) | |
download | fatcat-6326f7e7941e62e9b374ddfc0447c98436242f5c.tar.gz fatcat-6326f7e7941e62e9b374ddfc0447c98436242f5c.zip |
pass through kwargs (fixes bezerk imports)
Diffstat (limited to 'python/fatcat_tools/importers/crossref.py')
-rw-r--r-- | python/fatcat_tools/importers/crossref.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/fatcat_tools/importers/crossref.py b/python/fatcat_tools/importers/crossref.py index c81349f3..45a92e98 100644 --- a/python/fatcat_tools/importers/crossref.py +++ b/python/fatcat_tools/importers/crossref.py @@ -75,7 +75,8 @@ class CrossrefImporter(EntityImporter): super().__init__(api, issn_map_file=issn_map_file, editgroup_description=eg_desc, - editgroup_extra=eg_extra) + editgroup_extra=eg_extra, + **kwargs) self.create_containers = kwargs.get('create_containers') extid_map_file = kwargs.get('extid_map_file') |