Skip to content

Commit

Permalink
fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Arohan Ajit authored and Arohan Ajit committed Oct 24, 2024
1 parent fb197f6 commit 903aead
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/r.fillnulls/r.fillnulls.py
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ def main():
tmp_rmaps.remove(holename + "_edges")
tmp_rmaps.remove(holename + "_dem")
tmp_vmaps.remove(holename)
except Exception:
except ValueError:
pass
gs.warning(
_(
Expand Down Expand Up @@ -545,7 +545,7 @@ def main():
tmp_rmaps.remove(holename + "_grown")
tmp_rmaps.remove(holename + "_edges")
tmp_rmaps.remove(holename + "_dem")
except Exception:
except ValueError:
pass
try:
gs.run_command(
Expand All @@ -569,7 +569,7 @@ def main():
)
try:
tmp_vmaps.remove(holename)
except Exception:
except ValueError:
pass
try:
gs.run_command(
Expand Down

0 comments on commit 903aead

Please sign in to comment.