From cd654cbb57fc1516adb4f8e9ffb9771c1969eb93 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Sun, 1 Dec 2024 21:00:11 -0800 Subject: [PATCH] Fix a few docstring typos (#80). --- borgmatic/hooks/data_source/lvm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/borgmatic/hooks/data_source/lvm.py b/borgmatic/hooks/data_source/lvm.py index 8a1b78ca..6a3b7568 100644 --- a/borgmatic/hooks/data_source/lvm.py +++ b/borgmatic/hooks/data_source/lvm.py @@ -30,7 +30,7 @@ def get_logical_volumes(lsblk_command, source_directories=None): If source directories is None, include all logical volume mounts points, not just those in source directories. - Return the result as a sequence of (device name, device path, mount point) pairs. + Return the result as a sequence of (device name, device path, mount point) tuples. ''' try: devices_info = json.loads( @@ -193,7 +193,7 @@ def unmount_snapshot(umount_command, snapshot_mount_path): # pragma: no cover def delete_snapshot(lvremove_command, snapshot_device_path): # pragma: no cover ''' - Given an lvremote command to run and the device path of a snapshot, remove it it. + Given an lvremove command to run and the device path of a snapshot, remove it it. ''' borgmatic.execute.execute_command( (