You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This prevents users from calling ray.wait(object_ids, 1) and prevents things from breaking if we reorder keyword arguments later or add new keyword arguments.
For ray.init(), I think all arguments should be keyword only. Same with the rest of the API.
Any reason not to do this? Other than breaking existing cases that don't specify the keyword?
The text was updated successfully, but these errors were encountered:
For example, I would suggest changing
to
This prevents users from calling
ray.wait(object_ids, 1)
and prevents things from breaking if we reorder keyword arguments later or add new keyword arguments.For
ray.init()
, I think all arguments should be keyword only. Same with the rest of the API.Any reason not to do this? Other than breaking existing cases that don't specify the keyword?
The text was updated successfully, but these errors were encountered: