From f0594dacbbdf2e9761e287f70a74c3c7694322ae Mon Sep 17 00:00:00 2001 From: Siarhei Siniak Date: Wed, 28 Jul 2021 10:59:23 +0300 Subject: [PATCH] [~] Refactor --- python/tasks/mlb_player.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/tasks/mlb_player.py b/python/tasks/mlb_player.py index 79ae644..b438017 100644 --- a/python/tasks/mlb_player.py +++ b/python/tasks/mlb_player.py @@ -1709,7 +1709,7 @@ def kernel_27(): --outdir %s ''' % (t4, t2) pprint.pprint([t4, t2, t6]) - with subprocess.Popen(, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) as p: + with subprocess.Popen(t6, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) as p: pprint.pprint(p.communicate()) p.wait() assert p.returncode == 0