Refactor extract function to take citekeys not papers

This commit is contained in:
Marty Oehme 2022-12-22 19:39:14 +01:00
parent ef24e544fc
commit 80b615651c
Signed by: Marty
GPG Key ID: 73BA40D5AFAF49C9
1 changed files with 3 additions and 3 deletions

View File

@ -75,15 +75,15 @@ class ExtractPlugin(PapersPlugin):
)
if not citekeys:
return
papers = self._gather_papers(citekeys)
all_annotations = self.extract(papers)
all_annotations = self.extract(citekeys)
if args.write:
self._to_notes(conf, all_annotations, args.edit)
else:
self._to_stdout(all_annotations)
self.repository.close()
def extract(self, papers):
def extract(self, citekeys):
papers = self._gather_papers(citekeys)
papers_annotated = []
for paper in papers:
file = self._get_file(paper)