Skip to content

Commit

Permalink
don't wrap comments unnecessarily
Browse files Browse the repository at this point in the history
  • Loading branch information
nchammas committed Aug 4, 2014
1 parent bfb9f9f commit b09fae2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions python/pyspark/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,7 @@
# mllib that depend on top level pyspark packages, which transitively depend on python's random.
# Since Python's import logic looks for modules in the current package first, we eliminate
# mllib.random as a candidate for C{import random} by removing the first search path, the script's
# location, in order to force the loader to look in Python's top-level
# modules for C{random}.
# location, in order to force the loader to look in Python's top-level modules for C{random}.
import sys
s = sys.path.pop(0)
import random
Expand Down

0 comments on commit b09fae2

Please sign in to comment.