Skip to content
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: remove duplicate fields #925

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@

- Enable automated test run as required step for release process
- Enable basic DependaBot scanning for pip packages and GitHub actions used in CI
- Add CI support for release proces with [release.yaml](.github/workflows/release.yml) workflow
- Release documentation is updated acrodingly in [RELEASING.md](./RELEASING.md)
- Add CI support for release process with [release.yaml](.github/workflows/release.yml) workflow
- Release documentation is updated accordingly in [RELEASING.md](./RELEASING.md)
- Fix duplicated fields

## 0.21.0

Expand Down
4 changes: 2 additions & 2 deletions sparkmagic/sparkmagic/controllerwidget/abstractmenuwidget.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ def __init__(
self._repr_html_()

def _repr_html_(self):
for child in self.children:
self.ipython_display.display(child)
# for child in self.children:
# self.ipython_display.display(child)
return ""

def hide_all(self):
Expand Down