Skip to content

Commit

Permalink
Make rbind use star-args
Browse files Browse the repository at this point in the history
  • Loading branch information
tgsmith61591 committed Jan 31, 2017
1 parent 5c71486 commit 45e7594
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skutil/h2o/util.py
Expand Up @@ -441,7 +441,7 @@ def reorder_h2o_frame(X, idcs):
last_index = i

# print([type(c) for c in chunks]) # couldn't figure out an issue for a while...
return chunks[0] if len(chunks) == 1 else rbind_all(chunks)
return chunks[0] if len(chunks) == 1 else rbind_all(*chunks)


def shuffle_h2o_frame(X):
Expand Down

0 comments on commit 45e7594

Please sign in to comment.