add docstring to PackageInstaller

This commit is contained in:
Michael Hudson-Doyle 2023-07-13 11:37:43 +12:00
parent 743c350b1f
commit cb1e760207
1 changed files with 6 additions and 0 deletions

View File

@ -28,6 +28,12 @@ log = logging.getLogger('subiquity.server.pkghelper')
class PackageInstaller:
"""Install packages from the pool on the ISO in the live session.
Sometimes we need packages from the pool in the live session, for
example to install wpasupplicant when wlan interfaces are detected
by the server installer.
"""
def __init__(self):
self.pkgs: Dict[str, asyncio.Task] = {}