We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0abbde3 commit 4eefdd9Copy full SHA for 4eefdd9
1 file changed
cdisc_rules_engine/check_operators/dataframe_operators.py
@@ -1497,7 +1497,7 @@ def check_inconsistency(row):
1497
return df.apply(check_inconsistency, axis=1)
1498
1499
def next_column_exists_and_previous_is_null(self, row) -> bool:
1500
- row.reset_index(drop=True, inplace=True)
+ row = row.reset_index(drop=True)
1501
for index in row[
1502
row.isin(NULL_FLAVORS) | pd.isna(row)
1503
].index: # leaving null values only
0 commit comments