Skip to content
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

CI: Fix PEP8 E722 Error and Confirm No Other Common flake8 Errors in locale/ #4354

Merged
merged 2 commits into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ per-file-ignores =
imagery/i.atcorr/create_iwave.py: F632, F821, W293
doc/python/m.distance.py: E501
doc/gui/wxpython/example/dialogs.py: F401
locale/grass_po_stats.py: E122, E128, E231, E401, E722
gui/scripts/d.wms.py: E501
gui/wxpython/core/gcmd.py: E402
gui/wxpython/core/gconsole.py: E722
Expand Down
2 changes: 1 addition & 1 deletion locale/grass_po_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def writejson(stats, outfile):
fout.close()
try:
os.remove("messages.mo")
except:
except OSError:
pass


Expand Down
Loading