Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
lu-wang-dl committed May 23, 2024
1 parent c9cade9 commit 7250ea9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions joblibspark/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ class SparkDistributedBackend(ParallelBackendBase, AutoBatchingMixin):
"""

def __init__(self,
num_cpus_worker_node: Optional[int],
num_gpus_worker_node: Optional[int],
num_cpus_worker_node: Optional[int] = None,
num_gpus_worker_node: Optional[int] = None,
**backend_args):
# pylint: disable=super-with-arguments
super(SparkDistributedBackend, self).__init__(**backend_args)
Expand Down

0 comments on commit 7250ea9

Please sign in to comment.