File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 22
33> Utility belt to handle data on AWS.
44
5- [ ![ Release] ( https://img.shields.io/badge/release-0.0.13 -brightgreen.svg )] ( https://pypi.org/project/awswrangler/ )
5+ [ ![ Release] ( https://img.shields.io/badge/release-0.0.14 -brightgreen.svg )] ( https://pypi.org/project/awswrangler/ )
66[ ![ Downloads] ( https://img.shields.io/pypi/dm/awswrangler.svg )] ( https://pypi.org/project/awswrangler/ )
77[ ![ Python Version] ( https://img.shields.io/badge/python-3.6%20%7C%203.7-brightgreen.svg )] ( https://pypi.org/project/awswrangler/ )
88[ ![ Documentation Status] ( https://readthedocs.org/projects/aws-data-wrangler/badge/?version=latest )] ( https://aws-data-wrangler.readthedocs.io/en/latest/?badge=latest )
Original file line number Diff line number Diff line change 11__title__ = "awswrangler"
22__description__ = "Utility belt to handle data on AWS."
3- __version__ = "0.0.13 "
3+ __version__ = "0.0.14 "
44__license__ = "Apache License 2.0"
Original file line number Diff line number Diff line change @@ -112,8 +112,9 @@ def _build_cluster_args(**pars):
112112 }
113113 if pars ["spark_jars_path" ] is not None :
114114 spark_defaults ["Properties" ]["spark.jars" ] = pars ["spark_jars_path" ]
115- for k , v in pars ["spark_defaults" ].items ():
116- spark_defaults ["Properties" ][k ] = v
115+ if pars ["spark_defaults" ] is not None :
116+ for k , v in pars ["spark_defaults" ].items ():
117+ spark_defaults ["Properties" ][k ] = v
117118 args ["Configurations" ].append (spark_defaults )
118119
119120 # Applications
You can’t perform that action at this time.
0 commit comments