from __future__ import annotations def bulletize(items: list[str]) -> str: return '\n'.join(f'- {item}' for item in items)