Skip to content

Commit

Permalink
join format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Will McGinnis committed Nov 30, 2016
1 parent e59059e commit 1a9631e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dummy_spark/rdd.py
Expand Up @@ -865,7 +865,7 @@ def leftOuterJoin(self, other, numPartitions=None):
:return:
"""

data = [(k, (dict(self._jrdd).get(k)), v) for k, v in other._jrdd]
data = [(k, (dict(self._jrdd).get(k), v)) for k, v in other._jrdd]
return RDD(data, self.ctx)

def rightOuterJoin(self, other, numPartitions=None):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -2,7 +2,7 @@
from codecs import open
from os import path

VERSION = '0.0.6'
VERSION = '0.0.7'

here = path.abspath(path.dirname(__file__))

Expand Down

0 comments on commit 1a9631e

Please sign in to comment.