Skip to content

Commit

Permalink
MaskManager: No need to talk about removing a mask, that's obvious
Browse files Browse the repository at this point in the history
  • Loading branch information
wenzeslaus committed Jan 29, 2025
1 parent 26ffe8a commit c026601
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion python/grass/script/raster.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,5 +340,10 @@ def __exit__(self, exc_type, exc_val, exc_tb):

if self._remove:
run_command(
"g.remove", type="raster", name=self.mask_name, flags="f", env=self.env
"g.remove",
type="raster",
name=self.mask_name,
flags="f",
env=self.env,
quiet=True,
)

0 comments on commit c026601

Please sign in to comment.