mirror of
https://github.com/instructkr/claude-code.git
synced 2026-05-23 14:06:44 +00: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)
|