-
Notifications
You must be signed in to change notification settings - Fork 14
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
Fix ECCOrestoring show method #311
Conversation
@NoraLoose if you can confirm that the issue is resolved with this PR it'd be great! |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #311 +/- ##
=====================================
Coverage 0.00% 0.00%
=====================================
Files 34 34
Lines 1983 1983
=====================================
Misses 1983 1983 ☔ View full report in Codecov by Sentry. |
@@ -340,7 +344,7 @@ function Base.show(io::IO, p::ECCORestoring) | |||
"├── restoring dataset: ", summary(p.field_time_series.backend.metadata), '\n', | |||
"├── restoring rate: ", p.rate, '\n', | |||
"├── mask: ", summary(p.mask), '\n', | |||
"└── grid: ", summary(p.grid)) | |||
"└── grid: ", summary(p.native_grid)) |
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.
this is the bug fix
Thanks for the bug fix @navidcy! I can confirm that this resolved the issue. 🎉 |
Closes #310
(Also took the opportunity to fix the docstring rendering for ECCORestoring)