version 1.2 Tokyo Drift!

This commit is contained in:
Adrian Manteza 2022-03-25 22:31:43 +00:00
parent 5e13db79b6
commit a94256a10b
2 changed files with 3 additions and 2 deletions

View File

@ -2,6 +2,7 @@ import csv
import io import io
import re import re
from tokenize import String from tokenize import String
from typing import Tuple
from helpers import common_helper from helpers import common_helper
from models.item import Item from models.item import Item
@ -102,7 +103,7 @@ def key_to_uuid(key):
return re.split("_", key)[0] return re.split("_", key)[0]
def solution_items(variables: list, solver_run: SolverRun) -> (list, list): def solution_items(variables: list, solver_run: SolverRun) -> Tuple[list]:
form_items = [] form_items = []
solver_variables = [] solver_variables = []

View File

@ -25,7 +25,7 @@ class ServiceListener(Consumer):
def main(): def main():
logging.info('Starting Solver Service (v1.1.4)...') logging.info('Starting Solver Service: Tokyo Drift (v1.2)...')
# ToDo: Figure out a much better way of doing this. # ToDo: Figure out a much better way of doing this.
# LocalStack wants 'endpoint_url', while prod doesnt :( # LocalStack wants 'endpoint_url', while prod doesnt :(