Skip to content

Commit a8534a7

Browse files
committed
fix: Do not (unnecessarily!) copy files twice in Autograde converter
1 parent 1f5d857 commit a8534a7

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

grader_service/convert/converters/autograde.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,6 @@ def convert_notebooks(self) -> None:
7474
# check for missing notebooks and give them a score of zero if they do not exist
7575
json_path = os.path.join(self._output_directory, "gradebook.json")
7676
with Gradebook(json_path) as gb:
77-
self.copy_unmatched_files(gb)
78-
7977
glob_notebooks = {
8078
self.init_single_notebook_resources(n)["unique_key"]: n for n in self.notebooks
8179
}

0 commit comments

Comments
 (0)