-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[python] Enable chaining on certain write methods. (#123)
Returns `self` from a few methods to enable chaining: - DataFrame/DenseNDArray/SparseNDArray.write - Collection.set This enables useful chaining: some_coll.set('x', ...).set('y', ...) my_df = DataFrame.create(...).write(...) do_stuff_with(my_df)
- Loading branch information
1 parent
8922de4
commit b010bb4
Showing
3 changed files
with
10 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters