Skip to content

Commit 5745d85

Browse files
Remove space to fix style
1 parent f552d49 commit 5745d85

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
@@ -707,7 +707,7 @@ def pipe_objs(out):
707707
result = (x.rstrip(b'\n').decode('utf-8') for x in iter(pipe.stdout.readline, b''))
708708
pipe.wait()
709709
if pipe.returncode:
710-
raise Exception("Pipe function `%s' exited with error code %d" %(command, pipe.returncode) )
710+
raise Exception("Pipe function `%s' exited with error code %d" %(command, pipe.returncode))
711711
return result
712712
return self.mapPartitions(func)
713713

0 commit comments

Comments
 (0)