Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds@gmail.com>2022-01-07 10:55:51 +0000
committerAnton Hvornum <anton.feeds@gmail.com>2022-01-07 10:55:51 +0000
commita14533818be1d4b44ce7c92697ed2c8a3cfca806 (patch)
tree76b54d3d934ea8761161a0af137958c23fabe1ac
parent93f9d159bd69fee03e0fa139296bc9aa52520c92 (diff)
Wrongly spelled import
-rw-r--r--archinstall/lib/systemd.py4
1 files 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