Skip to content

Commit db64522

Browse files
authored
Fix table display wrapper (#103)
* Fix table display wrapper * Bump version * Bump python version
1 parent cd614ba commit db64522

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version_info = (2, 4, 3)
1+
version_info = (2, 4, 4)
22
__version__ = '.'.join(map(str, version_info))

beakerx_tabledisplay/beakerx_tabledisplay/table_display_runtim.py

+2-2
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

beakerx_tabledisplay/js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@beakerx/beakerx-tabledisplay",
3-
"version": "2.4.3",
3+
"version": "2.4.4",
44
"description": "BeakerX: Beaker TableDisplay Extension for Jupyter Notebook and Lab",
55
"homepage": "http://beakerx.com/",
66
"keywords": [

0 commit comments

Comments
 (0)