refact: rename planner to tasks

This commit is contained in:
Bertrand Benjamin 2022-04-09 06:58:44 +02:00
parent 32c74ae679
commit ebf5bd0c7d
4 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
""" Scheduler for action to make """
from bopytex.planner import Task
from bopytex.tasks import Task
class Scheduler:

View File

@ -1,4 +1,4 @@
from bopytex.planner import Task
from bopytex.tasks import Task
from bopytex.scheduler import Scheduler
import pytest

View File

@ -1,4 +1,4 @@
from bopytex.planner import activate_corr_on, clean, compile_pdf, generate, join_pdfs
from bopytex.tasks import activate_corr_on, clean, compile_pdf, generate, join_pdfs
def test_build_task_generate():