Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
zoidy committed Sep 11, 2024
1 parent 71e9709 commit f2637b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions figshare/Article.py
Original file line number Diff line number Diff line change
Expand Up @@ -829,9 +829,9 @@ def find_matched_articles(self, articles):
self.logs.write_log_in_file("info", f"Total unmatched unique articles: {len(set(unmatched_articles))}.", True)
self.logs.write_log_in_file("info", f"Total matched article versions: {self.no_matched}.", True)
self.logs.write_log_in_file("info", f"Total unmatched article versions: {self.no_unmatched}.", True)
self.logs.write_log_in_file("info", f"Total skipped unique articles: "
self.logs.write_log_in_file("info", "Total skipped unique articles: "
+ f"{len(self.already_preserved_counts_dict['already_preserved_article_ids'])}.", True)
self.logs.write_log_in_file("info", f"Total skipped article versions: "
self.logs.write_log_in_file("info", "Total skipped article versions: "
+ f"{self.already_preserved_counts_dict['already_preserved_versions']}.", True)

if len(set(unmatched_articles)) > 0 or len(self.article_non_match_info) > 0:
Expand Down

0 comments on commit f2637b0

Please sign in to comment.