MossaicMan's picture
Upload 33 files
345000b verified
raw
history blame contribute delete
170 Bytes
def prepare_jd_chunks(jd_text: str) -> list[str]:
return [
line.strip()
for line in jd_text.split("\n")
if len(line.strip()) > 20
]