Skip to content

Commit

Permalink
Merge pull request #503 from lsst/tickets/DM-29883
Browse files Browse the repository at this point in the history
DM-29883: Add keyword to always overwrite existing files.
  • Loading branch information
erykoff committed Apr 26, 2021
2 parents d42051e + fead2ac commit b8184e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/pipe/tasks/healSparseMapping.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def write(self, inMemoryDataset):
# Docstring inherited from Formatter.write.
# Update the location with the formatter-preferred file extension
self.fileDescriptor.location.updateExtension(self.extension)
inMemoryDataset.write(self.fileDescriptor.location.path)
inMemoryDataset.write(self.fileDescriptor.location.path, clobber=True)


def _is_power_of_two(value):
Expand Down

0 comments on commit b8184e6

Please sign in to comment.