Returns the list of available skills.
(self)
| 1125 | |
| 1126 | @property |
| 1127 | def skills(self) -> list[models.Skill]: |
| 1128 | """Returns the list of available skills.""" |
| 1129 | return self._list_skills() |
| 1130 | |
| 1131 | def clone_with_updated_skills( |
| 1132 | self, skills: list[models.Skill] |
nothing calls this directly
no test coverage detected