mirror of
https://github.com/instructkr/claude-code.git
synced 2026-04-03 12:18:47 +03: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)
|