Skip to content

Commit

Permalink
Clean up dropping column
Browse files Browse the repository at this point in the history
  • Loading branch information
morriscb committed Aug 10, 2023
1 parent 264764e commit 5265529
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ def _check_for_errant_omitted_stimulus(
first_row = input_df.iloc[0]
if not pd.isna(first_row["omitted"]):
if first_row["omitted"]:
input_df.drop(first_row.name, axis=0, inplace=True)
input_df = input_df.drop(first_row.name, axis=0)
return input_df

@staticmethod
Expand Down

0 comments on commit 5265529

Please sign in to comment.