Skip to content

Commit beb5f1d

Browse files
committed
Correction of type hint (#11)
1 parent 8ab5ffd commit beb5f1d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mkdocs_test/common.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import inspect
1515
import subprocess
1616
import yaml
17-
from typing import List, Tuple
17+
from typing import List, Dict, Tuple
1818

1919
import markdown
2020
import pandas as pd
@@ -323,7 +323,7 @@ def get_first_h1(markdown_text: str):
323323

324324

325325

326-
def get_tables(markdown_text:str) -> dict[pd.DataFrame]:
326+
def get_tables(markdown_text:str) -> Dict[pd.DataFrame]:
327327
"""
328328
Convert markdown text to HTML, extract tables,
329329
and convert them to dataframes.

0 commit comments

Comments
 (0)