Fix: run pre-commit hooks
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-07-28 09:39:51 +02:00
parent d5981d25e5
commit cd2fdc162e
35 changed files with 368 additions and 363 deletions

View File

@@ -1,7 +1,8 @@
from bopytex.tasks import Task, activate_corr_on, compile_pdf, join_pdfs
import bopytex.planner.naming as naming
import os
import bopytex.planner.naming as naming
from bopytex.tasks import Task, activate_corr_on, compile_pdf, join_pdfs
def list_files(dir=".", accept=lambda _: True, reject=lambda _: False):
files = []

View File

@@ -1,7 +1,8 @@
from bopytex.tasks import Task, activate_corr_on, compile_pdf, generate, join_pdfs
import csv
import bopytex.planner.naming as naming
from bopytex.planner.exceptions import PlannerMissingOption
import csv
from bopytex.tasks import Task, activate_corr_on, compile_pdf, generate, join_pdfs
def build_subject_list_from_infos(infos: list[dict]) -> list[dict]:
@@ -70,10 +71,7 @@ def tasks_builder(
for subject in subjects:
source = naming.template2source(template, subject)
args = {
"subject": subject,
"options": options
}
args = {"subject": subject, "options": options}
tasks.append(generate(template, args, source))

View File

@@ -12,4 +12,3 @@ def source2pdf(source):
def join(template):
return source2pdf("joined" + template[3:])