Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 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
1 change: 1 addition & 0 deletions bindings/pyroot/pythonizations/python/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ set(py_sources
ROOT/_jupyroot/magics/__init__.py
ROOT/_jupyroot/magics/cppmagic.py
ROOT/_jupyroot/magics/jsrootmagic.py
ROOT/_jupyroot/magics/rootbrowsemagic.py
ROOT/_numbadeclare.py
ROOT/_pythonization/__init__.py
ROOT/_pythonization/_cppinstance.py
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,7 @@ def __init__(self, poller):
def display_drawables(displayFunction):
drawers = helpers.utils.GetDrawers()
for drawer in drawers:
for dobj in drawer.GetDrawableObjects():
displayFunction(dobj)
drawer.Draw(displayFunction)


class JupyROOTDisplayer(Runner):
Expand Down
Loading