remove dangling debug statement

This commit is contained in:
Lincoln Stein 2023-09-25 19:30:41 -04:00
parent 13919ff300
commit 066e09b517

View File

@ -156,8 +156,6 @@ async def import_model(
prediction_types = {x.value: x for x in SchedulerPredictionType} prediction_types = {x.value: x for x in SchedulerPredictionType}
logger = ApiDependencies.invoker.services.logger logger = ApiDependencies.invoker.services.logger
print(f"DEBUG: prediction_type = {prediction_type}")
try: try:
installed_models = ApiDependencies.invoker.services.model_manager.heuristic_import( installed_models = ApiDependencies.invoker.services.model_manager.heuristic_import(
items_to_import=items_to_import, prediction_type_helper=lambda x: prediction_types.get(prediction_type) items_to_import=items_to_import, prediction_type_helper=lambda x: prediction_types.get(prediction_type)