fix: black
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user