-
Notifications
You must be signed in to change notification settings - Fork 20
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
methods for size and range of coords #356
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #356 +/- ##
=======================================
Coverage 99.53% 99.53%
=======================================
Files 94 94
Lines 7366 7384 +18
=======================================
+ Hits 7332 7350 +18
Misses 34 34
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
@@ -256,19 +256,19 @@ def test_size(self, coord_manager): | |||
assert isinstance(coord_manager.size, int | np.int_) | |||
|
|||
def test_min(self, basic_coord_manager): | |||
"""Ensure we can git min value.""" | |||
"""Ensure we can get min value.""" |
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.
Haha, thanks for fixing the typos along the way ;)
Thanks to @d-chambers for the valuable discussions and assistance with this PR. |
Description
This PR implements methods for the CoordManager class to provide information such as number of channels, number of seconds, etc., about patch's coordinates.
Checklist
I have (if applicable):