Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
christianversloot committed Jan 30, 2024
1 parent 921bcd5 commit 57949b8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/zenml/integrations/hyperai/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def flavors(cls) -> List[Type[Flavor]]:
Returns:
List of stack component flavors for this integration.
"""
from zenml.integrations.hyperai.orchestrators import (
from zenml.integrations.hyperai.flavors.hyperai_orchestrator_flavor import (
HyperAIOrchestratorFlavor
)

Expand Down
4 changes: 2 additions & 2 deletions src/zenml/integrations/hyperai/orchestrators/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
# permissions and limitations under the License.
"""HyperAI orchestrator."""
from zenml.integrations.hyperai.orchestrators.hyperai_orchestrator import (
HyperAIOrchestratorFlavor
HyperAIOrchestrator
)

__all__ = [
"HyperAIOrchestratorFlavor"
"HyperAIOrchestrator"
]
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
from zenml.enums import StackComponentType
from zenml.integrations.hyperai.orchestrators.hyperai_orchestrator import (
HyperAIOrchestrator,
)
from zenml.integrations.hyperai.flavors.hyperai_orchestrator_flavor import (
HyperAIOrchestratorConfig,
)

Expand Down

0 comments on commit 57949b8

Please sign in to comment.