Merged in bugfix/group_chunk_json_parsing (pull request #271)

term group fixed

* term group fixed

* Merged main into bugfix/group_chunk_json_parsing

* file_processing.py edited online with Bitbucket
* Merged main into bugfix/group_chunk_json_parsing


Approved-by: Alex Galarce
This commit is contained in:
Mayank Aamseek
2024-11-14 21:41:07 +00:00
committed by Alex Galarce
parent 73020bdc10
commit df519ea32b
4 changed files with 11 additions and 5 deletions
+1 -1
View File
@@ -319,7 +319,7 @@ def clean_auto_renewal_ind(final_df):
and "CONTRACT_TERMINATION_DT" in final_df
):
final_df.loc[
final_df["CONTRACT_AUTO_RENEWAL_IND"] == "Yes", "CONTRACT_TERMINATION_DT"
final_df["CONTRACT_AUTO_RENEWAL_IND"].isin(["Yes", "Y"]), "CONTRACT_TERMINATION_DT"
] = np.nan
return final_df