Skip to content

Commit

Permalink
removed no use imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
yhwen committed Dec 3, 2024
1 parent 2ab02b1 commit c092943
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions nvflare/app_common/job_launcher/client_process_launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,9 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import os

from nvflare.apis.fl_constant import FLContextKey, JobConstants
from nvflare.apis.workspace import Workspace
from nvflare.app_common.job_launcher.process_launcher import ProcessJobLauncher
from nvflare.utils.job_launcher_utils import add_custom_dir_to_path, generate_client_command
from nvflare.utils.job_launcher_utils import generate_client_command


class ClientProcessJobLauncher(ProcessJobLauncher):
Expand Down
5 changes: 1 addition & 4 deletions nvflare/app_common/job_launcher/server_process_launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,9 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import os

from nvflare.apis.fl_constant import FLContextKey, JobConstants
from nvflare.apis.workspace import Workspace
from nvflare.app_common.job_launcher.process_launcher import ProcessJobLauncher
from nvflare.utils.job_launcher_utils import add_custom_dir_to_path, generate_server_command
from nvflare.utils.job_launcher_utils import generate_server_command


class ServerProcessJobLauncher(ProcessJobLauncher):
Expand Down

0 comments on commit c092943

Please sign in to comment.