Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cdisc_rules_engine/check_operators/dataframe_operators.py
Original file line number Diff line number Diff line change
Expand Up @@ -1497,7 +1497,7 @@ def check_inconsistency(row):
return df.apply(check_inconsistency, axis=1)

def next_column_exists_and_previous_is_null(self, row) -> bool:
row.reset_index(drop=True, inplace=True)
row = row.reset_index(drop=True)
for index in row[
row.isin(NULL_FLAVORS) | pd.isna(row)
].index: # leaving null values only
Expand Down
Loading