We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c72803a commit ece7cbeCopy full SHA for ece7cbe
docs/source/plug-in.md
@@ -31,9 +31,9 @@ class TemplatePersonality(LoggingConfigurable):
31
been specified."""
32
pass
33
34
-def create_personality(self, parent):
+def create_personality(*args, **kwargs):
35
"""Put docstring here."""
36
- return TemplatePersonality(parent=parent)
+ return TemplatePersonality(*args, **kwargs)
37
```
38
39
Provided personalities include [kernel_gateway.jupyter_websocket](websocket-mode.md) and [kernel_gateway.notebook_http](http-mode.md).
0 commit comments