Skip to content

Commit

Permalink
Use RegistryBundleBase instead of RegistryBundle
Browse files Browse the repository at this point in the history
Summary: As titled

Reviewed By: saitcakmak

Differential Revision: D67423166
  • Loading branch information
mpolson64 authored and facebook-github-bot committed Dec 19, 2024
1 parent a3da9a5 commit b855580
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ax/preview/api/configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from typing import Any, Callable, List, Mapping, Sequence

from ax.preview.api.types import TParameterValue
from ax.storage.registry_bundle import RegistryBundle
from ax.storage.registry_bundle import RegistryBundleBase


class ParameterType(Enum):
Expand Down Expand Up @@ -163,4 +163,4 @@ class OrchestrationConfig:
class StorageConfig:
creator: Callable[..., Any] | None = None # pyre-fixme[4]
url: str | None = None
registry_bundle: RegistryBundle | None = None
registry_bundle: RegistryBundleBase | None = None

0 comments on commit b855580

Please sign in to comment.