-
Notifications
You must be signed in to change notification settings - Fork 2
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
rename heatmap_cb to line_cb #549
Conversation
Reviewer's Guide by SourceryThis pull request renames the variable Sequence diagram for renaming heatmap_cb to line_cbsequenceDiagram
participant HoloviewResult
participant self.filter
HoloviewResult->>self.filter: to_line(use_tap)
alt use_tap is false or inputs_cnt > 1 or tap_var is empty
HoloviewResult->>HoloviewResult: line_cb = self.to_line_ds
else use_tap is true
HoloviewResult->>HoloviewResult: line_cb = partial(self.to_line_tap_ds)
end
HoloviewResult->>self.filter: heatmap_cb (renamed to line_cb)
self.filter-->>HoloviewResult: Returns line plot
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
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.
Hey @blooop - I've reviewed your changes - here's some feedback:
Overall Comments:
- Consider renaming
to_line_ds
andto_line_tap_ds
to reflect the new naming convention.
Here's what I looked at during the review
- 🟢 General issues: all looks good
- 🟢 Security: all looks good
- 🟢 Testing: all looks good
- 🟢 Complexity: all looks good
- 🟢 Documentation: all looks good
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
Summary by Sourcery
Enhancements:
heatmap_cb
toline_cb
for clarity and consistency in the codebase.