fix: black

This commit is contained in:
timeshifter
2021-12-05 17:27:10 +01:00
parent d16bce790a
commit a03e249a7c
+2
View File
@@ -614,6 +614,7 @@ class Cryptsetup(CommandInterface):
class Pool: class Pool:
"""Represents an internal pool.""" """Represents an internal pool."""
def __init__(self, name: str): def __init__(self, name: str):
self._name = name self._name = name
self._path: ZFSPath = ZFSPath.from_string(name) self._path: ZFSPath = ZFSPath.from_string(name)
@@ -629,6 +630,7 @@ class Pool:
class ExternalPool(Pool): class ExternalPool(Pool):
"""Represents an external pool.""" """Represents an external pool."""
def __init__(self, name: str, disk: Disk): def __init__(self, name: str, disk: Disk):
super().__init__(name) super().__init__(name)
self._imported: bool = False self._imported: bool = False