Skip to content

Commit d644477

Browse files
committed
[SPARK-2470] PEP8 fixes to worker.py
1 parent aa3a7b6 commit d644477

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/pyspark/worker.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ def main(infile, outfile):
5757
SparkFiles._is_running_on_worker = True
5858

5959
# fetch names of includes (*.zip and *.egg files) and construct PYTHONPATH
60-
sys.path.append(spark_files_dir) # *.py files that were added will be copied here
61-
num_python_includes = read_int(infile)
60+
sys.path.append(spark_files_dir) # *.py files that were added will be copied here
61+
num_python_includes = read_int(infile)
6262
for _ in range(num_python_includes):
6363
filename = utf8_deserializer.loads(infile)
6464
sys.path.append(os.path.join(spark_files_dir, filename))

0 commit comments

Comments
 (0)