SantanuBanerjee commited on
Commit
1534c20
·
verified ·
1 Parent(s): 9d7f35d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -707,8 +707,8 @@ def process_excel(file):
707
  consoleMessage_and_Print(f"Error during Location Cluster Dataframing: {e}")
708
 
709
  try:
710
- problem_clusters_df = pd.DataFrame({'Cluster_Id': list(location_clusters.keys()),
711
- 'Problem_Cluster': list(location_clusters.values())})
712
  problem_clusters_df.to_excel(writer, sheet_name='Problem_Clusters', index=False)
713
 
714
  except Exception as e:
 
707
  consoleMessage_and_Print(f"Error during Location Cluster Dataframing: {e}")
708
 
709
  try:
710
+ problem_clusters_df = pd.DataFrame({'Cluster_Id': list(problem_clusters.keys()),
711
+ 'Problem_Cluster': list(problem_clusters.values())})
712
  problem_clusters_df.to_excel(writer, sheet_name='Problem_Clusters', index=False)
713
 
714
  except Exception as e: