fix: add missing commas in print and f.write calls for dataset export formatting

This commit is contained in:
2024-11-24 06:15:17 +00:00
parent 31b792bde2
commit 1414d1e116
+4 -4
View File
@@ -30,9 +30,9 @@ def dump():
print(
"===",
f"All rants written by user(ranter) `{user}` on devRant(developer community).",
"```"
text
"```"
"```",
text,
"```",
)
printr(text)
with pathlib.Path("export/rants-" + user + ".txt").open("w") as f:
@@ -49,7 +49,7 @@ def dump():
"```",
f"All posts written by user(ranter) `{user}` on devRant(developer community): ```.",
text,
"```"
"```",
)
printr(text)
with pathlib.Path("export/posts-" + user + ".txt").open("w") as f: