increase logging length for table
Browse files
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[:
|
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)
|