Skip to content

Commit

Permalink
Remove unused imports to fix CI (#1996)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #1996

Fixes:
https://pxl.cl/3PLWk

Reviewed By: jelena-markovic

Differential Revision: D51404881

fbshipit-source-id: 827d2035917d03b8751d50e644549247a27c06f3
  • Loading branch information
saitcakmak authored and facebook-github-bot committed Nov 16, 2023
1 parent 3985791 commit 2488f88
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions ax/core/generation_strategy_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 2488f88

Please sign in to comment.