Skip to content

Commit

Permalink
Backport PR jupyterlab#768: change unsupported_slash_commands default…
Browse files Browse the repository at this point in the history
… value from dict to set
  • Loading branch information
michaelchia authored and meeseeksmachine committed May 3, 2024
1 parent 98b5fe3 commit f7a5cd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/jupyter-ai-magics/jupyter_ai_magics/providers.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ class Config:
serve a custom provider and want to distinguish it in the chat UI.
"""

unsupported_slash_commands: ClassVar[set] = {}
unsupported_slash_commands: ClassVar[set] = set()
"""
A set of slash commands unsupported by this provider. Unsupported slash
commands are not shown in the help message, and cannot be used while this
Expand Down

0 comments on commit f7a5cd4

Please sign in to comment.