index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds@gmail.com> | 2022-01-07 10:55:51 +0000 |
---|---|---|
committer | Anton Hvornum <anton.feeds@gmail.com> | 2022-01-07 10:55:51 +0000 |
commit | a14533818be1d4b44ce7c92697ed2c8a3cfca806 (patch) | |
tree | 76b54d3d934ea8761161a0af137958c23fabe1ac /archinstall/lib/systemd.py | |
parent | 93f9d159bd69fee03e0fa139296bc9aa52520c92 (diff) |
-rw-r--r-- | archinstall/lib/systemd.py | 4 |
diff --git a/archinstall/lib/systemd.py b/archinstall/lib/systemd.py index 74229fae..44e634fe 100644 --- a/archinstall/lib/systemd.py +++ b/archinstall/lib/systemd.py @@ -1,6 +1,6 @@ import logging import time -from typing import Interator +from typing import Iterator from .exceptions import SysCallError from .general import SysCommand, SysCommandWorker, locate_binary from .installer import Installer @@ -99,7 +99,7 @@ class Boot: else: raise SysCallError(f"Could not shut down temporary boot of {self.instance}: {shutdown}", exit_code=shutdown.exit_code) - def __iter__(self) -> Interator[str]: + def __iter__(self) -> Iterator[str]: if self.session: for value in self.session: yield value |