Skip to content

Commit 7527c8a

Browse files
committed
include task lists directly in repo
to be updated by github action
1 parent 3feb4b8 commit 7527c8a

10 files changed

Lines changed: 19098 additions & 1 deletion

File tree

task-lists/easy.json

Lines changed: 2355 additions & 0 deletions
Large diffs are not rendered by default.

task-lists/elite.json

Lines changed: 3360 additions & 0 deletions
Large diffs are not rendered by default.

task-lists/extra.json

Lines changed: 936 additions & 0 deletions
Large diffs are not rendered by default.

task-lists/hard.json

Lines changed: 3173 additions & 0 deletions
Large diffs are not rendered by default.

task-lists/master-tedious.json

Lines changed: 2432 additions & 0 deletions
Large diffs are not rendered by default.

task-lists/master.json

Lines changed: 3068 additions & 0 deletions
Large diffs are not rendered by default.

task-lists/medium.json

Lines changed: 2610 additions & 0 deletions
Large diffs are not rendered by default.

task-lists/passive.json

Lines changed: 365 additions & 0 deletions
Large diffs are not rendered by default.

task-lists/pets.json

Lines changed: 798 additions & 0 deletions
Large diffs are not rendered by default.

tasklists.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def to_task_class(data: dict) -> TaskData:
2323
verification=to_verification_data(data.get('verification')))
2424

2525
def read_tasks(filename: str) -> list[TaskData]:
26-
with open('task-list/tiers/' + filename + '.json') as f:
26+
with open('task-lists/' + filename + '.json') as f:
2727
json_list = json.load(f)
2828
return list(map(to_task_class, json_list.get('tasks')))
2929

0 commit comments

Comments
 (0)