in bicep-typeless.py [0:0]
def run() -> None:
biceps = os.listdir("bicep")
if os.path.exists("bicep-typeless"):
shutil.rmtree("bicep-typeless")
shutil.copytree("bicep", "bicep-typeless")
for fil in biceps:
if fil.endswith(".bicep"):
process_bicep(f"bicep/{fil}", f"bicep-typeless/{fil}")