Correct extract_adapters type hint
This commit is contained in:
parent
4f2dfc68d3
commit
e59683b925
|
@ -1,6 +1,6 @@
|
|||
from argparse import ArgumentParser
|
||||
from glob import glob
|
||||
from typing import Dict, List, Tuple
|
||||
from typing import List, Tuple
|
||||
|
||||
from pandas import DataFrame, read_html, Series
|
||||
|
||||
|
@ -10,7 +10,7 @@ def find_html_files(path) -> List:
|
|||
return file_list
|
||||
|
||||
|
||||
def extract_adapters(files) -> Tuple[Series, Dict]:
|
||||
def extract_adapters(files) -> Tuple[Series, List]:
|
||||
all_adapters = DataFrame()
|
||||
for entry in files:
|
||||
tables = read_html(entry)
|
||||
|
|
Loading…
Reference in New Issue