Skip to content

Commit

Permalink
Remove a type waiver
Browse files Browse the repository at this point in the history
  • Loading branch information
jond01 committed Dec 20, 2023
1 parent 5abfd5b commit c3e9d55
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions xil/fibi.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,7 @@ def get_fibi_df(url: str = _FIBI_URL) -> pd.DataFrame:
header=_HEADER,
encoding=_ENCODING,
attrs=_ATTRS,
# Remove the type waiver on the following line when pandas-stubs is updated:
# https://github.com/pandas-dev/pandas-stubs/pull/785
storage_options=UA_HEADER, # type: ignore[call-arg]
storage_options=UA_HEADER,
)

df = dfs[0] # guaranteed to have at least one element at this point
Expand Down

0 comments on commit c3e9d55

Please sign in to comment.