toloka.client.TolokaClient.update_skill
| Source code
update_skill( self, skill_id: str, skill: Skill)
Updates all skill parameters in Toloka.
Parameters | Type | Description |
---|---|---|
skill_id | str | The ID of the skill to be updated. |
skill | Skill | The skill with new parameters. |
Returns:
The skill with updated parameters.
Return type:
Examples:
updated_skill = toloka_client.get_skill(skill_id='14486')updated_skill.hidden = Falsetoloka_client.update_skill(skill_id=updated_skill.id, skill=updated_skill)
Last updated: August 28, 2023