(skill_name: str)
| 46 | |
| 47 | @staticmethod |
| 48 | def _normalize_skill_name(skill_name: str) -> str: |
| 49 | skill_name = skill_name.strip() |
| 50 | if skill_name.startswith("**") and skill_name.endswith("**"): |
| 51 | skill_name = skill_name[2:-2] |
| 52 | return skill_name.strip() |
| 53 | |
| 54 | def get_log_object(self): |
| 55 | import uuid |
no outgoing calls
no test coverage detected