From f7958d7db90b136482b93e292bce0b6d2c675e19 Mon Sep 17 00:00:00 2001 From: Jannik Date: Tue, 26 May 2020 14:54:36 +0200 Subject: [PATCH] Add docstring for get_volume_backup_destination --- src/restic_compose_backup/containers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/restic_compose_backup/containers.py b/src/restic_compose_backup/containers.py index 02a3f7e..863677d 100644 --- a/src/restic_compose_backup/containers.py +++ b/src/restic_compose_backup/containers.py @@ -231,6 +231,7 @@ class Container: return volumes def get_volume_backup_destination(self, mount, source_prefix) -> str: + """Get the destination path for backups of the given mount""" destination = Path(source_prefix) if utils.is_true(config.include_project_name):