Skip to content

Commit

Permalink
Testing
Browse files Browse the repository at this point in the history
  • Loading branch information
dalthviz committed Nov 19, 2024
1 parent d9e7bad commit 6939c42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spyder_kernels/console/kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ def set_traceback_highlighting(self, color_scheme):
elif getattr(VerboseTB, '_tb_highlight', None) is not None:
VerboseTB._tb_highlight = color

def set_traceback_syntax_highlighting(self, syntax_style, syntax_style_dict):
def set_traceback_syntax_highlighting(self, syntax_style):
"""Set the traceback syntax highlighting style."""
import IPython.core.ultratb
from IPython.core.ultratb import VerboseTB
Expand Down
2 changes: 1 addition & 1 deletion spyder_kernels/utils/style.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,6 @@ def create_style_class(color_scheme_dict):

class StyleClass(Style):
default_style = ""
styles = create_pygments_dict(color_scheme_dict)
styles = create_pygments_dict(dict(color_scheme_dict))

return StyleClass

0 comments on commit 6939c42

Please sign in to comment.