fix: black

This commit is contained in:
timeshifter
2021-12-02 14:53:14 +01:00
parent 14509c439f
commit 94bf4769ff
+1 -1
View File
@@ -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]