diff --git a/recopytex/scripts/recopytex.py b/recopytex/scripts/recopytex.py index 8bb12b2..dbfa045 100644 --- a/recopytex/scripts/recopytex.py +++ b/recopytex/scripts/recopytex.py @@ -76,22 +76,3 @@ def report(csv_file=""): except pm.exceptions.PapermillExecutionError as e: click.echo(f"Error with {csv}: {e}") - - - - - # with open(csv_file.parent / "description.yml") as f: - # tribe_desc = yaml.load(f, Loader=yaml.FullLoader) - - # template = Path(config["templates"]) / "tpl_student.ipynb" - # dest = Path(config["output"]) / tribe / csv_filename / "students" - # dest.mkdir(parents=True, exist_ok=True) - - # for st in tribe_desc["students"]: - # click.echo(f"Building {st} report on {assessment}") - # pm.execute_notebook( - # str(template), - # str(dest / f"{st}.ipynb"), - # parameters=dict(tribe=tribe, student=st, source=str(tribe_dir.absolute())), - # ) -