We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ced2259 commit 60128f2Copy full SHA for 60128f2
1 file changed
tools/csv2xlsx.py
@@ -254,9 +254,10 @@ def main():
254
print(f"Saving to: {xlsx_path}")
255
wb.save(xlsx_path)
256
257
- print(f"Success: Excel file generated successfully!")
258
- print(f" - {len(df)} risks processed")
259
- print(f" - 3 tabs created: Matrix + Heatmap + Dashboard")
+ print("Creating Excel file...") # Pas besoin de f-string ici
+ print("Success: Excel file generated successfully!") # Pas besoin de f-string ici
+ print(f" - {len(df)} risks processed") # F-string nécessaire ici pour afficher len(df)
260
+ print(" - 3 tabs created: Matrix + Heatmap + Dashboard") # Pas besoin de f-string ici
261
262
if __name__ == '__main__':
263
main()
0 commit comments