fix: Correct indentation in process_markdown function

This commit is contained in:
Paul Gauthier (aider) 2024-08-22 08:22:48 -07:00
parent d48d231349
commit 2f7e690966

View file

@ -61,9 +61,6 @@ def process_markdown(filename):
# Output the results as JSON
print(json.dumps(results, indent=4))
except FileNotFoundError:
print(json.dumps({"error": f"File '{filename}' not found."}, indent=4))
if __name__ == "__main__":
if len(sys.argv) != 2: