Skip to content

Commit 364eb50

Browse files
committed
Anomysed logs
1 parent 2a6b5c2 commit 364eb50

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232

3333
BUCKET = "typescriptmate"
3434
FEEDBACK_LOG = "feedbacks.csv"
35+
MODIFIED_FEEDBACK_LOG = "feedbacks.modified.csv"
3536
COMPLETION_LOG = "completions.csv"
3637

3738
for log_name in (COMPLETION_LOG, FEEDBACK_LOG):
@@ -280,7 +281,7 @@ def read_last_rows(path: str, max_rows: int = 20):
280281
return header, last
281282

282283
comp_header, comp_rows = read_last_rows(COMPLETION_LOG)
283-
fb_header, fb_rows = read_last_rows(FEEDBACK_LOG)
284+
fb_header, fb_rows = read_last_rows(MODIFIED_FEEDBACK_LOG)
284285

285286
html = ["<html><body style='font-family: sans-serif'>"]
286287

0 commit comments

Comments
 (0)