Skip to content

Commit

Permalink
Fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
ueshin committed Oct 23, 2019
1 parent 45dbd9e commit b510bc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion databricks/koalas/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,5 +382,5 @@ def name_like_string(name: Union[str, Tuple]) -> str:
if is_list_like(name):
name = tuple([str(n) for n in name])
else:
name = tuple(str(name))
name = (str(name),)
return ('(%s)' % ', '.join(name)) if len(name) > 1 else name[0]

0 comments on commit b510bc0

Please sign in to comment.