[Gobal] added flake8 and did format

This commit is contained in:
coja
2026-05-04 10:33:09 +02:00
parent 494550d6fe
commit 0c2df231e9
12 changed files with 307 additions and 147 deletions
+2 -2
View File
@@ -5,8 +5,8 @@ from markdown import markdown as to_markdown
blog = ""
with open('blogs/Lorem Ipsum.md','rt') as file:
with open("blogs/Lorem Ipsum.md", "rt") as file:
blog = file.read()
with open('blogs/Lorem Ipsum.html', 'wt') as file:
with open("blogs/Lorem Ipsum.html", "wt") as file:
file.write(to_markdown(blog))