Skip to content

Commit aa05b7e

Browse files
committed
Fixed bug where default theme was not set.
1 parent ba8fde1 commit aa05b7e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/widget_code_input/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
)
1919

2020

21-
bundler_output_dir = pathlib.Path(os.path.dirname(os.path.abspath(__file__))) / "./static"
21+
2222

2323

2424
class CodeInputWidget(anywidget.AnyWidget):
@@ -75,7 +75,7 @@ def __init__( # pylint: disable=too-many-arguments
7575
function_parameters="",
7676
docstring="\n",
7777
function_body="",
78-
code_theme="",
78+
code_theme="basicLight",
7979
):
8080
"""
8181
Creates a new widget to show a box to enter code.

0 commit comments

Comments
 (0)