Skip to content

Commit

Permalink
display
Browse files Browse the repository at this point in the history
  • Loading branch information
raynardj committed Apr 30, 2022
1 parent 8c20ecf commit 477ac04
Show file tree
Hide file tree
Showing 19 changed files with 30 additions and 19,241 deletions.
2 changes: 1 addition & 1 deletion forgebox/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.1"
__version__ = "1.0.3"
7 changes: 6 additions & 1 deletion forgebox/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Cell
import pandas as pd
from .df import PandasDisplay
from .html import list_group, list_group_kv, display
from .html import list_group, list_group_kv
from typing import Callable, List, Tuple, Set, Dict, Any
from ipywidgets import (
IntSlider, FloatSlider, Text, Textarea, Layout,
Expand All @@ -17,6 +17,11 @@
)
import json

try:
display(HTML(''''''))
except:
display = print

def display_df(df): display(df)


Expand Down
Loading

0 comments on commit 477ac04

Please sign in to comment.