Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
morriscb committed Jul 28, 2023
1 parent 04c9b3a commit d81262c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion allensdk/core/dataframe_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def enforce_df_int_typing(input_df: pd.DataFrame,
if col in input_df.columns:
if use_pandas_type:
input_df[col] = input_df[col].astype('Int64')
else
else:
input_df[col] = \
input_df[col].fillna(INT_NULL).astype(int)
return input_df

0 comments on commit d81262c

Please sign in to comment.