index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Werner Llácer <wllacer@gmail.com> | 2022-08-01 10:26:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-01 10:26:51 +0200 |
commit | 3da03a192e3dc47c0e0c08302d28e9f3a62bcd0f (patch) | |
tree | 3f3d8231afb5a3b02656f07e300d3b2aefe61f87 /archinstall/lib/general.py | |
parent | 956b34905b730d32eab839b7a4627ca0bb9e5b06 (diff) |
-rw-r--r-- | archinstall/lib/general.py | 2 |
diff --git a/archinstall/lib/general.py b/archinstall/lib/general.py index 3ec1d685..27f444e8 100644 --- a/archinstall/lib/general.py +++ b/archinstall/lib/general.py @@ -37,7 +37,7 @@ else: def unregister(self, fileno :int, *args :List[Any], **kwargs :Dict[str, Any]) -> None: try: - del(self.monitoring[fileno]) + del(self.monitoring[fileno]) # noqa: E275 except: pass |