Correct extract_adapters type hint

This commit is contained in:
2021-11-13 14:28:39 +01:00
parent a987e662b5
commit d3f7677423

View File

@@ -1,5 +1,5 @@
from glob import glob from glob import glob
from typing import List from typing import List, Union
from pandas import DataFrame, read_html from pandas import DataFrame, read_html
@@ -9,7 +9,7 @@ def find_html_files(path) -> List:
return file_list return file_list
def extract_adapters(files) -> DataFrame: def extract_adapters(files) -> Union[DataFrame, None]:
all_adapters = DataFrame() all_adapters = DataFrame()
for entry in files: for entry in files:
tables = read_html(entry) tables = read_html(entry)