Skip to content

Commit

Permalink
Fixed bug where default theme was not set.
Browse files Browse the repository at this point in the history
  • Loading branch information
Taylor-96 committed Jun 25, 2024
1 parent ba8fde1 commit aa05b7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/widget_code_input/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
)


bundler_output_dir = pathlib.Path(os.path.dirname(os.path.abspath(__file__))) / "./static"



class CodeInputWidget(anywidget.AnyWidget):
Expand Down Expand Up @@ -75,7 +75,7 @@ def __init__( # pylint: disable=too-many-arguments
function_parameters="",
docstring="\n",
function_body="",
code_theme="",
code_theme="basicLight",
):
"""
Creates a new widget to show a box to enter code.
Expand Down

0 comments on commit aa05b7e

Please sign in to comment.