added methodology for delegating to service, fixed some formatting, cleaned up dangling imports
This commit is contained in:
@ -1,4 +1,8 @@
|
||||
import logging
|
||||
|
||||
from services.base import Base
|
||||
|
||||
class AbilityEstimationService(Base):
|
||||
pass
|
||||
|
||||
def process(self):
|
||||
logging.info('Ability Estimation Service to be implemented...')
|
||||
|
@ -1,4 +1,4 @@
|
||||
import os, json, random, io, logging
|
||||
import json, random, io, logging
|
||||
|
||||
from pulp import LpProblem, LpVariable, LpMinimize, LpMaximize, LpAffineExpression, LpConstraint, LpStatus, lpSum
|
||||
|
||||
@ -9,7 +9,6 @@ from lib.errors.item_generation_error import ItemGenerationError
|
||||
from models.solver_run import SolverRun
|
||||
from models.solution import Solution
|
||||
from models.form import Form
|
||||
from models.item import Item
|
||||
from models.target import Target
|
||||
|
||||
from services.base import Base
|
||||
|
Reference in New Issue
Block a user