Skip to content

Commit

Permalink
🎤 interactive featuers
Browse files Browse the repository at this point in the history
  • Loading branch information
raynardj committed Dec 23, 2021
1 parent 0a892bb commit d044e2d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion forgebox/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.4.19"
__version__ = "0.4.20"
2 changes: 1 addition & 1 deletion forgebox/html.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def deeper(x):
return list_group_kv(x)
if type(x) in [int, str, float, bool]:
return x
if type(x) in ImageClass.__subclasses__():
if type(x) == ImageClass:
return img_dom(x)
return x

Expand Down
2 changes: 1 addition & 1 deletion nbs/04_html.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@
" return list_group_kv(x)\n",
" if type(x) in [int, str, float, bool]:\n",
" return x\n",
" if type(x) in ImageClass.__subclasses__():\n",
" if type(x) == ImageClass:\n",
" return img_dom(x)\n",
" return x\n",
"\n",
Expand Down
2 changes: 1 addition & 1 deletion settings.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ author = xiaochen(ray) zhang
author_email = [email protected]
copyright = xiaochen(ray) zhang
branch = master
version = 0.4.19
version = 0.4.20
min_python = 3.6
audience = Developers
language = English
Expand Down

0 comments on commit d044e2d

Please sign in to comment.