mirror of
https://github.com/instructkr/claw-code.git
synced 2026-04-03 15:14:48 +08:00
6 lines
129 B
Python
6 lines
129 B
Python
from __future__ import annotations
|
|
|
|
|
|
def bulletize(items: list[str]) -> str:
|
|
return '\n'.join(f'- {item}' for item in items)
|