格式化地点
(self, locations: list)
| 41 | } |
| 42 | |
| 43 | def _format_location(self, locations: list) -> str: |
| 44 | """格式化地点""" |
| 45 | if not locations: |
| 46 | return "Remote" |
| 47 | return ", ".join(locations[:3]) |
| 48 | |
| 49 | def _format_salary(self, source: dict) -> str: |
| 50 | """格式化薪资信息""" |