Skip to content

Commit

Permalink
add return type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
oronimbus committed Nov 7, 2022
1 parent 86c08f0 commit bc6715b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pybeta/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import pandas as pd


def stack_dict_to_df(_dict: dict):
def stack_dict_to_df(_dict: dict) -> pd.DataFrame:
"""Stack dict of dicts into dataframe."""
stacked = []
for k, v in _dict.items():
Expand Down

0 comments on commit bc6715b

Please sign in to comment.