-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pass through DataIO params after formatting strings #173
Conversation
Codecov Report
@@ Coverage Diff @@
## dev #173 +/- ##
=========================================
+ Coverage 70.01% 70.3% +0.29%
=========================================
Files 30 30
Lines 5813 5823 +10
Branches 1369 1370 +1
=========================================
+ Hits 4070 4094 +24
+ Misses 1307 1298 -9
+ Partials 436 431 -5
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be nice to see a full IO-to-disk test that shows the resulting HDF dataset is in fact chunked
""" | ||
Returns a dict with the I/O parameters specifiedin in this DataIO. | ||
""" | ||
return dict() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this right? Just return an empty dict
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The base DataIO class offers no ability to specify parameters, so there's not really anything to return
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. Thanks for chasing down this bug.
Agreed |
Motivation
fix #162