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 7cf6e89 commit 652fc08Copy full SHA for 652fc08
.github/workflows/csv_linter.yml
@@ -37,8 +37,8 @@ jobs:
37
with open("prompts.csv", "r", encoding="utf-8") as f:
38
reader = csv.reader(f)
39
headers = next(reader)
40
- if headers != ["act", "prompt"]:
41
- print("Error: CSV headers must be exactly [act, prompt]")
+ if headers != ["act", "prompt", "for_devs"]:
+ print("Error: CSV headers must be exactly [act, prompt, for_devs]")
42
exit(1)
43
for row_num, row in enumerate(reader, 2):
44
if len(row) != 2:
0 commit comments