Skip to content

Commit b09fae2

Browse files
committed
don't wrap comments unnecessarily
1 parent bfb9f9f commit b09fae2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

python/pyspark/__init__.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,7 @@
5353
# mllib that depend on top level pyspark packages, which transitively depend on python's random.
5454
# Since Python's import logic looks for modules in the current package first, we eliminate
5555
# mllib.random as a candidate for C{import random} by removing the first search path, the script's
56-
# location, in order to force the loader to look in Python's top-level
57-
# modules for C{random}.
56+
# location, in order to force the loader to look in Python's top-level modules for C{random}.
5857
import sys
5958
s = sys.path.pop(0)
6059
import random

0 commit comments

Comments
 (0)