From 94bf4769ffaa847f0dfe6901ed25d1fd8cc7326a Mon Sep 17 00:00:00 2001 From: timeshifter Date: Thu, 2 Dec 2021 14:53:14 +0100 Subject: [PATCH] fix: black --- zfs-backup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zfs-backup.py b/zfs-backup.py index 86fdb52..4d3d1ec 100755 --- a/zfs-backup.py +++ b/zfs-backup.py @@ -450,7 +450,7 @@ class Dataset: @staticmethod def _get_n_oldest_snapshots( - snapshots: list[Snapshot], count: int + snapshots: list[Snapshot], count: int ) -> list[Snapshot]: snapshots.sort() return snapshots[:count]