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
The name of the function in client.py should match the associated example in examples/
For instance, the function task_names_get(self) in client.py has an associated example of examples/task_get_names.
Preferably, the naming convention should be:
<OBJECT>_<ACTION>_<RETURN>
So, in this case, the object is "task", the action is "get", and the return is "names". This would yield a consistent name of task_get_names for both the client function and example file name. This convention should be applied to all of the examples and client functions.
The text was updated successfully, but these errors were encountered:
@vprusso I had to make a fork and open a pull request from there since I don't think I have write access to this repo - it should be the only open PR now though and that has all of the updates!
The name of the function in
client.py
should match the associated example inexamples/
For instance, the function
task_names_get(self)
inclient.py
has an associated example ofexamples/task_get_names
.Preferably, the naming convention should be:
So, in this case, the object is "task", the action is "get", and the return is "names". This would yield a consistent name of
task_get_names
for both the client function and example file name. This convention should be applied to all of the examples and client functions.The text was updated successfully, but these errors were encountered: