Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
Signed-off-by: Yubo Wang <[email protected]>
  • Loading branch information
Yubo Wang committed May 13, 2023
1 parent 2df576f commit 699279b
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .restart_policy import RestartPolicy
from .chief import Chief
from .ps import PS
from .restart_policy import RestartPolicy
from .worker import Worker
from .run_policy import CleanPodPolicy, RunPolicy
from .tensorflow_job import TensorFlowJob
from .worker import Worker
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from enum import Enum
from typing import Optional

from flyteidl.plugins.kubeflow import tensorflow_pb2 as tensorflow_task
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from dataclasses import dataclass
from enum import Enum
from typing import Optional

from flyteidl.plugins.kubeflow import tensorflow_pb2 as tensorflow_task
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from enum import Enum
from typing import Optional

from flyteidl.plugins.kubeflow import tensorflow_pb2 as tensorflow_task
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
Kubernetes. It leverages `TF Job <https://github.com/kubeflow/tf-operator>`_ Plugin from kubeflow.
"""
from dataclasses import dataclass, field
from enum import Enum
from typing import Any, Callable, Dict, Optional

from flytekitplugins.kftensorflow import models
Expand Down

0 comments on commit 699279b

Please sign in to comment.