Skip to content

Commit

Permalink
Adding a newline at end of json files
Browse files Browse the repository at this point in the history
  • Loading branch information
BaseMax committed Jan 9, 2025
1 parent 84cc6bd commit f22b7be
Show file tree
Hide file tree
Showing 104 changed files with 104 additions and 104 deletions.
2 changes: 1 addition & 1 deletion build/data/countries.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,4 +251,4 @@
if __name__ == "__main__":
j = json.dumps(countries, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/data/languages.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,4 +211,4 @@
if __name__ == "__main__":
j = json.dumps(languages, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/data/mediatypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1102,4 +1102,4 @@
if __name__ == "__main__":
j = json.dumps(mediatypes, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/a.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/abbr.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/address.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/area.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,4 +123,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/article.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/aside.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/audio.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/b.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/bdi.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/bdo.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/blockquote.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/br.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/button.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,4 +123,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/canvas.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/caption.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/cite.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/col.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/colgroup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/datalist.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/dd.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/del.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/details.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/dfn.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/div.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/dl.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/dt.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/em.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/fieldset.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/figcaption.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/figure.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/footer.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/form.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,4 +96,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/h1.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/h2.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/h3.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/h4.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/h5.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/h6.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/header.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/hgroup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/hr.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/i.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/iframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/img.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/input.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/ins.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/kbd.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/label.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/legend.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/li.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/link.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,4 +93,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/noscript.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/ol.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/optgroup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/option.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/p.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/param.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
2 changes: 1 addition & 1 deletion build/tags/picture.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

j = json.dumps(element_dict, indent=4, ensure_ascii=False)
print(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j)
open(Path(__file__).stem + ".json", "w", encoding="utf-8").write(j + "\n")
Loading

0 comments on commit f22b7be

Please sign in to comment.