Skip to content

Commit

Permalink
Merge pull request #23 from klarman-cell-observatory/boli
Browse files Browse the repository at this point in the history
Fixed another bug
  • Loading branch information
bli25 committed Jun 9, 2020
2 parents f64c460 + 6304398 commit c9ca38c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pegasusio/aggr_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def _get_fillna_dict(self, df: pd.DataFrame) -> dict:
for column in df:
if df[column].dtype.kind == "b":
fillna_dict[column] = False
elif df[column].dtpye.kind in {"i", "u", "f", "c"}:
elif df[column].dtype.kind in {"i", "u", "f", "c"}:
fillna_dict[column] = 0
elif df[column].dtype.kind == "S":
fillna_dict[column] = b""
Expand Down

0 comments on commit c9ca38c

Please sign in to comment.