We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a6b5c2 commit 364eb50Copy full SHA for 364eb50
app.py
@@ -32,6 +32,7 @@
32
33
BUCKET = "typescriptmate"
34
FEEDBACK_LOG = "feedbacks.csv"
35
+MODIFIED_FEEDBACK_LOG = "feedbacks.modified.csv"
36
COMPLETION_LOG = "completions.csv"
37
38
for log_name in (COMPLETION_LOG, FEEDBACK_LOG):
@@ -280,7 +281,7 @@ def read_last_rows(path: str, max_rows: int = 20):
280
281
return header, last
282
283
comp_header, comp_rows = read_last_rows(COMPLETION_LOG)
- fb_header, fb_rows = read_last_rows(FEEDBACK_LOG)
284
+ fb_header, fb_rows = read_last_rows(MODIFIED_FEEDBACK_LOG)
285
286
html = ["<html><body style='font-family: sans-serif'>"]
287
0 commit comments