Skip to content

Commit

Permalink
refactor(core): Refactor export to exporter
Browse files Browse the repository at this point in the history
  • Loading branch information
j3soon committed Jul 27, 2024
1 parent a3bf9e0 commit d1aa356
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions core/nurse_scheduling/scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from ortools.sat.python import cp_model

from . import export, preference_types
from . import exporter, preference_types
from .context import Context
from .dataloader import load_data
from .report import Report
Expand Down Expand Up @@ -143,7 +143,7 @@ def on_solution_callback(self):
if not found:
return None

df = export.get_people_versus_date_dataframe(
df = exporter.get_people_versus_date_dataframe(
ctx.dates, ctx.people, ctx.requirements,
ctx.shifts, solver,
)
Expand Down

0 comments on commit d1aa356

Please sign in to comment.