Skip to content

Commit 36db60e

Browse files
committed
Fix type annotation typo in jsonify.py.
1 parent a7c4674 commit 36db60e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jsonify.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def read_manuscript(manuscript: BnF, df_dict: Dict[str, pd.DataFrame]) -> Dict[s
5353
df_dict[prop] = df
5454
return df_dict
5555

56-
def df_to_dict(df = pd.DataFrame) -> Dict[str, Tuple[Reciple, str]]:
56+
def df_to_dict(df = pd.DataFrame) -> Dict[str, Tuple[Recipe, str]]:
5757
"""
5858
Convert dataframe into dict of the following format:
5959
'prefLabel_en1': [(entry1, verbatim_term1), (entry2, verbatim_term2), ...],

0 commit comments

Comments
 (0)