From eca4f94f4ba7cc692b1d692e5927717a00a701dc Mon Sep 17 00:00:00 2001 From: Siarhei Siniak Date: Thu, 20 Jan 2022 12:12:17 +0300 Subject: [PATCH] [~] Refactor --- dotfiles/.local/bin/commands | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()