mirror of
https://github.com/codeflash-ai/codeflash.git
synced 2026-05-04 18:25:17 +00:00
3 lines
162 B
Python
3 lines
162 B
Python
def indentedCode(codes, count):
|
|
"""Indent code, used for generating test codes."""
|
|
return "\n".join(" " * count + line if line else "" for line in codes)
|