-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #350 from maxfordham/add-jsonable-dict
✨add jsonable dict.
- Loading branch information
Showing
16 changed files
with
268 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,8 +37,7 @@ | |
}, | ||
"outputs": [], | ||
"source": [ | ||
"%run __init__.py\n", | ||
"%load_ext lab_black" | ||
"\n" | ||
] | ||
}, | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
}, | ||
"outputs": [], | ||
"source": [ | ||
"%load_ext lab_black" | ||
"" | ||
] | ||
}, | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,8 +15,8 @@ | |
}, | ||
"outputs": [], | ||
"source": [ | ||
"%run __init__.py\n", | ||
"%load_ext lab_black" | ||
"\n", | ||
"" | ||
] | ||
}, | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"%run __init__.py" | ||
"" | ||
] | ||
}, | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,8 +29,8 @@ | |
}, | ||
"outputs": [], | ||
"source": [ | ||
"%run __init__.py\n", | ||
"%load_ext lab_black" | ||
"\n", | ||
"" | ||
] | ||
}, | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ | |
}, | ||
"outputs": [], | ||
"source": [ | ||
"%run __init__.py" | ||
"" | ||
] | ||
}, | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
}, | ||
"outputs": [], | ||
"source": [ | ||
"%run __init__.py" | ||
"" | ||
] | ||
}, | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"%run __init__.py" | ||
"" | ||
] | ||
}, | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
"outputs": [], | ||
"source": [ | ||
"%run ../src/ipyautoui/__init__.py\n", | ||
"%load_ext lab_black" | ||
"" | ||
] | ||
}, | ||
{ | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,30 @@ | ||
from ipyautoui.custom.filechooser import FileChooser | ||
from ipyautoui.custom.multiselect_search import MultiSelectSearch | ||
from ipyautoui.custom.iterable import AutoArray, Array, Dictionary | ||
from ipyautoui.custom.iterable import AutoArray, Array | ||
from ipyautoui.custom.loadproject import LoadProject | ||
from ipyautoui.custom.buttonbars import SaveButtonBar | ||
from ipyautoui.custom.fileupload import FileUploadToDir, FilesUploadToDir | ||
from ipyautoui.custom.executetasks import ExecuteTasks, SelectAndExecute | ||
from ipyautoui.custom.svgspinner import SvgSpinner | ||
from ipyautoui.custom.filedownload import FileDownload, FilesDownload, SelectAndDownload | ||
from ipyautoui.custom.maplist import MapList | ||
from ipyautoui.custom.jsonable_dict import JsonableDict | ||
|
||
__all__ = [ | ||
"FileChooser", | ||
"MultiSelectSearch", | ||
"AutoArray", | ||
"Array", | ||
"LoadProject", | ||
"SaveButtonBar", | ||
"FileUploadToDir", | ||
"FilesUploadToDir", | ||
"ExecuteTasks", | ||
"SelectAndExecute", | ||
"SvgSpinner", | ||
"FileDownload", | ||
"FilesDownload", | ||
"SelectAndDownload", | ||
"MapList", | ||
"JsonableDict" | ||
] |
Oops, something went wrong.