Skip to content

Commit

Permalink
Update formatting.py
Browse files Browse the repository at this point in the history
  • Loading branch information
shouples authored Oct 19, 2023
1 parent e38317b commit dc17c11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dx/utils/formatting.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ def clean_series_values(s: pd.Series) -> pd.Series:
"""
dtype_str = str(s.dtype)

if dtype_str in {"float", "int", "bool"}:
if dtype_str in {"float", "float64", "int", "int64", "bool"}:
# skip standard dtypes
logger.debug(f"skipping `{s.name}` since it has dtype `{dtype_str}`")
return s
Expand Down

0 comments on commit dc17c11

Please sign in to comment.