diff --git a/dotfiles/.local/bin/commands b/dotfiles/.local/bin/commands index f704fe2..637a58a 100755 --- a/dotfiles/.local/bin/commands +++ b/dotfiles/.local/bin/commands @@ -29,7 +29,7 @@ def eternal_oom(memory_limit=None): memory_limit = 3 * 1024 * 1024 assert isinstance(memory_limit, int) \ and memory_limit < 6 * 1024 * 1024 \ - and memory_limit > 512 * 1024 * 1024 + and memory_limit > 512 * 1024 def pandas_data_frame(lines, groups_regex, header_regex, extra_columns): header = re.compile(header_regex).search(lines[0]).groups()