From ef881f1594ee325b95053d516f73b63e7875be6d Mon Sep 17 00:00:00 2001 From: Johannes Koester Date: Wed, 15 Nov 2023 20:36:42 +0100 Subject: [PATCH] fix template --- poetry_snakemake_plugin/templates/storage-plugins/init.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/poetry_snakemake_plugin/templates/storage-plugins/init.py b/poetry_snakemake_plugin/templates/storage-plugins/init.py index ef42879..2f63dc8 100644 --- a/poetry_snakemake_plugin/templates/storage-plugins/init.py +++ b/poetry_snakemake_plugin/templates/storage-plugins/init.py @@ -146,8 +146,8 @@ def local_suffix(self) -> str: """Return a unique suffix for the local path, determined from self.query.""" ... - def close(self): - # Close any open connections, unmount stuff, etc. + def cleanup(self): + """Perform local cleanup of any remainders of the storage object.""" ... # Fallible methods should implement some retry logic.