diff --git a/pyutils/pyplot.py b/pyutils/pyplot.py index 067d30b..e9d02f7 100644 --- a/pyutils/pyplot.py +++ b/pyutils/pyplot.py @@ -37,7 +37,7 @@ def __init__(self, style_path=None, verbosity=1): verbosity = verbosity ) - self.logger.log(f"Initialised Plot with {self.style_path.rsplit("/", 1)[-1]} and verbosity = {self.verbosity}", "info") + self.logger.log(f"Initialised Plot with {self.style_path.rsplit('/', 1)[-1]} and verbosity = {self.verbosity}", "info") def round_to_sig_fig(self, val, sf): """ diff --git a/pyutils/pyprocess.py b/pyutils/pyprocess.py index 11e4651..24cdc96 100644 --- a/pyutils/pyprocess.py +++ b/pyutils/pyprocess.py @@ -454,14 +454,18 @@ def execute(self): use_processes=self.use_processes ) + # Postprocess + results = self.postprocess(results) + self.logger.log(f"Analysis complete", "success") return results - def process_results(self): + def postprocess(self, results): """Run post processing on the results list + Placeholder method! You can override it """ - pass + return results # Such as combination \ No newline at end of file