Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
danieljanes committed Jun 29, 2024
1 parent c4a1039 commit da3182f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/py/flwr/superexec/deployment.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def start_run(self, fab_file: bytes) -> Optional[RunTracker]:
log(INFO, "Created run %s", str(run_id))

# Start ServerApp
proc = subprocess.Popen(
proc = subprocess.Popen( # pylint: disable=consider-using-with
[
"flower-server-app",
"--run-id",
Expand All @@ -106,4 +106,4 @@ def start_run(self, fab_file: bytes) -> Optional[RunTracker]:
return None


exec = DeploymentEngine()
executor = DeploymentEngine()

0 comments on commit da3182f

Please sign in to comment.