Skip to content

Commit 5eccd88

Browse files
author
rootware
committed
added common jobs func arg
1 parent 9e7b4f2 commit 5eccd88

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyredactkit/common_jobs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def __init__(self) -> None:
3030
"""
3131
return None
3232

33-
def write_hashmap(self, hash_map=dict, filename=str, savedir="./") -> dict:
33+
def write_hashmap(self, hash_map: dict, filename: str, savedir="./") -> dict:
3434
"""Function that writes a .hashshadow_file.txt.json to os directory.
3535
Args:
3636
hash_map (dictionary): dictionary object to be written to file.
@@ -55,7 +55,7 @@ def valid_options(self) -> tuple:
5555
option_tuple += id['type']
5656
return option_tuple
5757

58-
def process_report(self, filename):
58+
def process_report(self, filename: str):
5959
"""Function to process calculate and generate report of man hour saved.
6060
Args:
6161
filename (str): File to count the words

0 commit comments

Comments
 (0)