Skip to content

Commit b4536ab

Browse files
committed
Reformat code
1 parent d6351fd commit b4536ab

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

python-markitdown/batch_converter.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ def main(
2222
print(f"✗ Error converting {file_path.name}: {e}")
2323
continue
2424

25-
output_file = output_path / f"{file_path.stem}{file_path.suffix}.md"
25+
output_file = (
26+
output_path / f"{file_path.stem}{file_path.suffix}.md"
27+
)
2628
output_file.write_text(result.markdown, encoding="utf-8")
2729
print(f"✓ Converted {file_path.name}{output_file.name}")
2830

0 commit comments

Comments
 (0)