Skip to content

Commit

Permalink
grass.script: Fixed E722 in v.what.shrds/ (OSGeo#4530)
Browse files Browse the repository at this point in the history
  • Loading branch information
arohanajit authored Oct 16, 2024
1 parent 2415894 commit 362bee3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ per-file-ignores =
scripts/r.in.srtm/r.in.srtm.py: E722
scripts/r.fillnulls/r.fillnulls.py: E722
scripts/d.rast.edit/d.rast.edit.py: E722
scripts/v.what.strds/v.what.strds.py: E722, E501
scripts/v.what.strds/v.what.strds.py: E501
# Line too long (esp. module interface definitions)
scripts/*/*.py: E501
temporal/t.rast.to.vect/t.rast.to.vect.py: E501
Expand Down
2 changes: 1 addition & 1 deletion scripts/v.what.strds/v.what.strds.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def main():
pymap = Vector(output)
try:
pymap.open("r")
except:
except Exception:
dbif.close()
gs.fatal(_("Unable to create vector map <%s>") % output)

Expand Down

0 comments on commit 362bee3

Please sign in to comment.