8000 Update repo documentation by thepetk · Pull Request #10 · python/python-docs-el · GitHub
[go: up one dir, main page]

Skip to content

Update repo documentation #10

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Mar 27, 2024
Merged
Prev Previous commit
Next Next commit
Update scripts/check_spelling.py
Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com>
  • Loading branch information
thepetk and lysnikolaou authored Mar 27, 2024
commit 0c7f6d55140569be502dc7b021a7690583c231cd
3 changes: 1 addition & 2 deletions scripts/check_spelling.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ def check_spell(po_files=None):
output_filename = tempfile.mktemp(suffix="_merged_dict.txt")
with open(output_filename, "w") as f:
for e in entries:
f.write(e)
f.write("\n")
f.write(f"{e}\n")

# Run pospell either against all files or the file given on the command line
if not po_files:
Expand Down
0