Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yindaheng98 committed Dec 17, 2023
1 parent b3cbca4 commit 3d5e924
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dblp_crawler/graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Graph(metaclass=abc.ABCMeta):
def __init__(self, pid_list: list[str], journal_list: list[str]) -> None:
self.persons: dict[str, Optional[DBLPPerson]] = {pid: None for pid in pid_list}
self.summarized_person: set[str] = set()
self.publications: dict[str, Publication] = set()
self.publications: set[str] = set()
self.init_journals = journal_list
self.journals_inited = False
self.total_author_succ_count, self.total_author_fail_count = 0, 0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

setup(
name='dblp_crawler',
version='2.0',
version='2.0.1',
author='yindaheng98',
author_email='[email protected]',
url='https://github.com/yindaheng98/dblp-crawler',
Expand Down

0 comments on commit 3d5e924

Please sign in to comment.