mirror of
http://10.0.2.1:3031/sauer/claw-code.git
synced 2026-06-30 10:07:03 +10: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)
|