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
Toggle Group Modifications #189
Conversation
Codecov Report
@@ Coverage Diff @@
## master #189 +/- ##
==========================================
+ Coverage 89.88% 90.06% +0.18%
==========================================
Files 30 30
Lines 4783 4872 +89
==========================================
+ Hits 4299 4388 +89
Misses 484 484
Continue to review full report at Codecov.
|
You did a much better job than I could! |
panel/widgets.py
Outdated
|
||
class RadioButtons(CheckBoxGroup): | ||
|
||
__doc__ = "Deprecated!!! see ToggleGroup" |
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.
Can these be proper docstrings? i.e.:
class RadioButtons(CheckBoxGroup):
"""
Deprecated, use ToggleGroup instead.
"""
…sts on wrong initialisation
Thanks so much for this. I've made one comment but am otherwise happy to merge. |
I'm making the correction |
PR following discussion in #185
Discussion on choices I made is open.
I let some classes with deprecation warning which should appear in tests
I updated the Widgets notebook with Toggle Group example.