added to csv and read csv because the code was not working after that
This commit is contained in:
parent
4f8d2d1567
commit
2768b6d1b5
|
@ -2074,6 +2074,11 @@ class NeutralAudit:
|
|||
audit_df = self.update_audit_df(df, audit_df)
|
||||
|
||||
####################################
|
||||
with open(self.base_file_path + "time_taken.txt", "a") as file007:
|
||||
file007.write("BEFORE sa_output_to_docx\n")
|
||||
|
||||
df.to_csv(self.base_file_path + "df_before_sa_output85.csv", index = False)
|
||||
df = pd.read_csv(self.base_file_path + "df_before_sa_output85.csv")
|
||||
|
||||
sf.sa_output_to_docx(df, output_linewise_docx, output_template)
|
||||
with open(self.base_file_path + "time_taken.txt", "a") as file007:
|
||||
|
|
Loading…
Reference in New Issue