Skip to content

Commit

Permalink
#209 Switch force_overwrite to default to True
Browse files Browse the repository at this point in the history
  • Loading branch information
donaldcampbelljr committed Apr 4, 2024
1 parent 59e1afb commit 04abc1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pypiper/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -1559,7 +1559,7 @@ def _report_profile(
myfile.write(message_raw + "\n")

def report_result(
self, key, value, nolog=False, result_formatter=None, force_overwrite=False
self, key, value, nolog=False, result_formatter=None, force_overwrite=True
):
"""
Writes a key:value pair to self.pipeline_stats_file.
Expand Down Expand Up @@ -1606,7 +1606,7 @@ def report_object(
annotation=None,
nolog=False,
result_formatter=None,
force_overwrite=False,
force_overwrite=True,
):
"""
Writes a key:value pair to self.pipeline_stats_file. Note: this function
Expand Down

0 comments on commit 04abc1f

Please sign in to comment.