jenyag commited on
Commit
2fb6d29
·
verified ·
1 Parent(s): 61599a7

Update src/tasks_content.py

Browse files
Files changed (1) hide show
  1. src/tasks_content.py +6 -6
src/tasks_content.py CHANGED
@@ -1,12 +1,12 @@
1
  from typing import Optional
2
 
3
  TASKS_PRETTY = {
4
- "library-based-code-generation": "Library-based code generation",
5
- "ci-builds-repair": "CI builds repair",
6
- "project-level-code-completion": "Project-level code completion",
7
- "commit-message-generation": "Commit message generation",
8
- "bug-localization": "Bug localization",
9
- "module-summarization": "Module summarization",
10
  }
11
  TASKS_PRETTY_REVERSE = {value: key for key, value in TASKS_PRETTY.items()}
12
 
 
1
  from typing import Optional
2
 
3
  TASKS_PRETTY = {
4
+ "library_based_code_generation": "Library-based code generation",
5
+ "ci_builds_repair": "CI builds repair",
6
+ "project_code_completion": "Project-level code completion",
7
+ "commit_message_generation": "Commit message generation",
8
+ "bug_localization": "Bug localization",
9
+ "module_summarization": "Module Summarization",
10
  }
11
  TASKS_PRETTY_REVERSE = {value: key for key, value in TASKS_PRETTY.items()}
12