Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
yocalebo committed Dec 28, 2024
1 parent 7b463ec commit 4675c29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scale_build/utils/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
@cache
def has_low_ram():
with open('/proc/meminfo') as f:
for line in filter(lambda x: 'MemTotal' in line, f):
for line in filter(lambda x: 'MemTotal' in x, f):
return int(line.split()[1]) * 1024 < REQUIRED_RAM_GB

0 comments on commit 4675c29

Please sign in to comment.