From 2488f887c1da7d1ae64a25850184fd317de40e78 Mon Sep 17 00:00:00 2001 From: Sait Cakmak Date: Thu, 16 Nov 2023 14:19:49 -0800 Subject: [PATCH] Remove unused imports to fix CI (#1996) Summary: Pull Request resolved: https://github.com/facebook/Ax/pull/1996 Fixes: https://pxl.cl/3PLWk Reviewed By: jelena-markovic Differential Revision: D51404881 fbshipit-source-id: 827d2035917d03b8751d50e644549247a27c06f3 --- ax/core/generation_strategy_interface.py | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/ax/core/generation_strategy_interface.py b/ax/core/generation_strategy_interface.py index afb692cebb8..79ac76e994a 100644 --- a/ax/core/generation_strategy_interface.py +++ b/ax/core/generation_strategy_interface.py @@ -3,17 +3,12 @@ # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. -from abc import ABC, abstractmethod, abstractproperty -from typing import Any, Dict, Iterable, List, Optional, Tuple +from abc import ABC, abstractmethod +from typing import Any, Dict, List, Optional from ax.core.data import Data from ax.core.experiment import Experiment from ax.core.generator_run import GeneratorRun -from ax.core.optimization_config import ( - MultiObjectiveOptimizationConfig, - OptimizationConfig, -) -from ax.core.types import TModelPredictArm, TParameterization from ax.utils.common.base import Base from ax.utils.common.typeutils import not_none