Skip to content

Commit 652fc08

Browse files
authored
Update csv_linter.yml
1 parent 7cf6e89 commit 652fc08

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/csv_linter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ jobs:
3737
with open("prompts.csv", "r", encoding="utf-8") as f:
3838
reader = csv.reader(f)
3939
headers = next(reader)
40-
if headers != ["act", "prompt"]:
41-
print("Error: CSV headers must be exactly [act, prompt]")
40+
if headers != ["act", "prompt", "for_devs"]:
41+
print("Error: CSV headers must be exactly [act, prompt, for_devs]")
4242
exit(1)
4343
for row_num, row in enumerate(reader, 2):
4444
if len(row) != 2:

0 commit comments

Comments
 (0)