Skip to content

Commit a6cbc56

Browse files
authored
Fix table display wrapper
1 parent cd614ba commit a6cbc56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

beakerx_tabledisplay/beakerx_tabledisplay/table_display_runtim.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
# limitations under the License.
1414

1515
from beakerx_tabledisplay import TableDisplay
16-
from IPython.display import display_html
16+
from IPython.display import display
1717
import pandas
1818

1919
class TableDisplayWrapper(object):
2020
def __get__(self, model_instance, model_class):
2121
def f():
22-
display_html(TableDisplay(model_instance))
22+
display(TableDisplay(model_instance))
2323

2424
return f
2525

0 commit comments

Comments
 (0)