From a14533818be1d4b44ce7c92697ed2c8a3cfca806 Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Fri, 7 Jan 2022 10:55:51 +0000 Subject: Wrongly spelled import --- archinstall/lib/systemd.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- cgit v1.2.3-54-g00ecf