sorted imports

This commit is contained in:
timeshifter
2021-11-25 16:04:56 +01:00
parent da8a841ed6
commit 762e212892
+7 -4
View File
@@ -4,12 +4,13 @@
from __future__ import annotations
import os
import subprocess
from subprocess import Popen, PIPE, check_output
import config
from sys import exit
import re
import subprocess
from functools import cache
from subprocess import PIPE, Popen, check_output
from sys import exit
import config
"""
Erstes Backup muss für alle notwendigen Datasets durchgeführt werden mit
@@ -32,6 +33,8 @@ class Pool:
def __init__(self, name):
self.name = name
@cache
@classmethod
def from_dict(cls, backup_pools: dict[str, str]) -> Pool:
print("Suche nach externer Festplatte für Backups")