Skip to content

Commit a67acd7

Browse files
committed
Style fix
1 parent 1595581 commit a67acd7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

python/pyspark/context.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,8 @@ def _do_init(self, master, appName, sparkHome, pyFiles, environment, batchSize,
222222
# data via a socket.
223223
# scala's mangled names w/ $ in them require special treatment.
224224
self._encryption_enabled = self._jvm.PythonUtils.isEncryptionEnabled(self._jsc)
225-
os.environ["SPARK_AUTH_SOCKET_TIMEOUT"] = str(self._jvm.PythonUtils.getPythonAuthSocketTimeout(self._jsc))
225+
os.environ["SPARK_AUTH_SOCKET_TIMEOUT"] = \
226+
str(self._jvm.PythonUtils.getPythonAuthSocketTimeout(self._jsc))
226227

227228
self.pythonExec = os.environ.get("PYSPARK_PYTHON", 'python')
228229
self.pythonVer = "%d.%d" % sys.version_info[:2]

0 commit comments

Comments
 (0)