We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd614ba commit a6cbc56Copy full SHA for a6cbc56
beakerx_tabledisplay/beakerx_tabledisplay/table_display_runtim.py
@@ -13,13 +13,13 @@
13
# limitations under the License.
14
15
from beakerx_tabledisplay import TableDisplay
16
-from IPython.display import display_html
+from IPython.display import display
17
import pandas
18
19
class TableDisplayWrapper(object):
20
def __get__(self, model_instance, model_class):
21
def f():
22
- display_html(TableDisplay(model_instance))
+ display(TableDisplay(model_instance))
23
24
return f
25
0 commit comments