Skip to content

Commit

Permalink
Revert change to shell parameter from merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
noah-weingarden committed Nov 6, 2024
1 parent d397c90 commit 424a193
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions madoop/mapreduce.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def map_single_chunk(exe, input_path, output_path, chunk):
try:
subprocess.run(
str(exe),
shell=True,
shell=False,
check=True,
input=chunk,
stdout=outfile,
Expand Down Expand Up @@ -415,7 +415,7 @@ def reduce_single_file(exe, input_path, output_path):
try:
subprocess.run(
str(exe),
shell=True,
shell=False,
check=True,
stdin=infile,
stdout=outfile,
Expand Down

0 comments on commit 424a193

Please sign in to comment.