Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/hardware.py
diff options
context:
space:
mode:
authormonosans <hsyqixco@protonmail.com>2021-07-16 10:42:29 +0300
committermonosans <hsyqixco@protonmail.com>2021-07-16 10:42:29 +0300
commit3d4f58a04e06ef4bdd023effc52d4cb33b49080c (patch)
treef57bda983c38061cd363252a845cf2ead046518b /archinstall/lib/hardware.py
parent3a4076419418dcdac538c543903cfc6e16bde35f (diff)
Replace for loops with comprehensions
Diffstat (limited to 'archinstall/lib/hardware.py')
-rw-r--r--archinstall/lib/hardware.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/archinstall/lib/hardware.py b/archinstall/lib/hardware.py
index a63155f5..b1ac516d 100644
--- a/archinstall/lib/hardware.py
+++ b/archinstall/lib/hardware.py
@@ -131,7 +131,10 @@ def product_name() -> Optional[str]:
def mem_info():
# This implementation is from https://stackoverflow.com/a/28161352
- return dict((i.split()[0].rstrip(':'), int(i.split()[1])) for i in open('/proc/meminfo').readlines())
+ return {
+ i.split()[0].rstrip(':'): int(i.split()[1])
+ for i in open('/proc/meminfo').readlines()
+ }
def mem_available() -> Optional[str]: