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 9127d2b commit e178dbeCopy full SHA for e178dbe
python/pyspark/shell.py
@@ -35,8 +35,8 @@
35
from pyspark.storagelevel import StorageLevel
36
37
# this is the equivalent of ADD_JARS
38
-add_files = (
39
- os.environ.get("ADD_FILES").split(',') if os.environ.get("ADD_FILES") is not None else None)
+add_files = (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