Skip to content

Commit 1b3dc4e

Browse files
fix missing space around operator style
This is an error in PEP8 but not in pylint.
1 parent 0974f98 commit 1b3dc4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/pyspark/rdd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,7 @@ def pipe_objs(out):
708708
pipe.wait()
709709
if pipe.returncode:
710710
raise Exception("Pipe function `%s' exited "
711-
"with error code %d" %(command, pipe.returncode))
711+
"with error code %d" % (command, pipe.returncode))
712712
return result
713713
return self.mapPartitions(func)
714714

0 commit comments

Comments
 (0)