Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix incorrectly documentet kwargs in AWS ECS #426

Merged
merged 1 commit into from
May 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions dask_cloudprovider/aws/ecs.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ class Scheduler(Task):
Any extra command line arguments to pass to dask-scheduler, e.g. ``["--tls-cert", "/path/to/cert.pem"]``

Defaults to `None`, no extra command line arguments.
kwargs: Dict()
kwargs:
Other kwargs to be passed to :class:`Task`.

See :class:`Task` for parameter info.
Expand Down Expand Up @@ -413,7 +413,7 @@ class Worker(Task):
scheduler: str
The address of the scheduler

kwargs: Dict()
kwargs:
Other kwargs to be passed to :class:`Task`.
"""

Expand Down Expand Up @@ -682,7 +682,7 @@ class ECSCluster(SpecCluster, ConfigMixin):
mounted in worker tasks. This setting controls whether volumes are also mounted in the scheduler task.

Default ``False``.
**kwargs: dict
**kwargs:
Additional keyword arguments to pass to ``SpecCluster``.

Examples
Expand Down Expand Up @@ -1396,7 +1396,7 @@ class FargateCluster(ECSCluster):

Parameters
----------
kwargs: dict
kwargs:
Keyword arguments to be passed to :class:`ECSCluster`.

Examples
Expand Down
Loading