We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95d1d95 commit 1916859Copy full SHA for 1916859
python/pyspark/shell.py
@@ -35,7 +35,8 @@
35
from pyspark.storagelevel import StorageLevel
36
37
# this is the equivalent of ADD_JARS
38
-add_files = os.environ.get("ADD_FILES").split(',') if os.environ.get("ADD_FILES") is not None else None
+add_files = (
39
+ os.environ.get("ADD_FILES").split(',') if os.environ.get("ADD_FILES") is not None else None)
40
41
if os.environ.get("SPARK_EXECUTOR_URI"):
42
SparkContext.setSystemProperty("spark.executor.uri", os.environ["SPARK_EXECUTOR_URI"])
0 commit comments