Skip to content

Commit

Permalink
Fixing a typo inside dask executor
Browse files Browse the repository at this point in the history
Signed-off-by: Julio Faracco <[email protected]>
  • Loading branch information
jcfaracco committed Mar 30, 2024
1 parent bd7a04a commit 21baacb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dasf/pipeline/executors/dask.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def info(self) -> str:
print(f"Executor Type: {executor_to_string(self.dtype)}")
print(f"Executor Backend: {self.client.backend}")

if self.is_connected && self.ngpus > 0:
if self.is_connected and self.ngpus > 0:
print(f"With {self.ngpus} GPUs")

print("Available GPUs:")
Expand Down

0 comments on commit 21baacb

Please sign in to comment.