Skip to content

Commit 90649f1

Browse files
Backport PR #768: change unsupported_slash_commands default value from dict to set (#771)
Co-authored-by: michaelchia <[email protected]>
1 parent 98b5fe3 commit 90649f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/jupyter-ai-magics/jupyter_ai_magics/providers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ class Config:
206206
serve a custom provider and want to distinguish it in the chat UI.
207207
"""
208208

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

0 commit comments

Comments
 (0)