Skip to content

Commit

Permalink
[fix] type hinting in _process_document()
Browse files Browse the repository at this point in the history
  • Loading branch information
grindsa committed Dec 10, 2023
1 parent 369096e commit 34bde2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dkb_robo/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ def _merge_postbox(self, msg_dic: Dict[str, str], pb_dic: Dict[str, str]) -> Dic
self.logger.debug('api.Wrapper._merge_postbox() ended\n')
return message_dic

def _process_document(self, path: str, prepend_date: bool, document: List[str], documentname_list: Dict[str, str]) -> Tuple[List[str], str, str]:
def _process_document(self, path: str, prepend_date: bool, document: Dict[str, str], documentname_list: Dict[str, str]) -> Tuple[List[str], str, str]:
""" check for duplicaton and download """
self.logger.debug('api.Wrapper._process_document()\n')

Expand Down

0 comments on commit 34bde2c

Please sign in to comment.