nolanzandi commited on
Commit
ce7b0a6
·
verified ·
1 Parent(s): 3497bf7

increase logging length for table

Browse files
Files changed (1) hide show
  1. functions/chart_functions.py +1 -1
functions/chart_functions.py CHANGED
@@ -364,7 +364,7 @@ def table_generation_func(session_hash, session_folder, **kwargs):
364
  df = pd.read_csv(csv_query_path)
365
 
366
  html_table = df.to_html()
367
- print(html_table[:200])
368
 
369
  with open(table_path, "w") as file:
370
  file.write(html_table)
 
364
  df = pd.read_csv(csv_query_path)
365
 
366
  html_table = df.to_html()
367
+ print(html_table[:1000])
368
 
369
  with open(table_path, "w") as file:
370
  file.write(html_table)