Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions jupyter_client/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@ def _context_default(self) -> zmq.Context:

# the class to create with our `client` method
client_class: DottedObjectName = DottedObjectName(
"jupyter_client.blocking.BlockingKernelClient"
"jupyter_client.blocking.BlockingKernelClient", config=True
)
client_factory: Type = Type(klass=KernelClient)
client_factory: Type = Type(klass=KernelClient, config=True)

@default("client_factory")
def _client_factory_default(self) -> Type:
Expand Down Expand Up @@ -716,9 +716,9 @@ class AsyncKernelManager(KernelManager):

# the class to create with our `client` method
client_class: DottedObjectName = DottedObjectName(
"jupyter_client.asynchronous.AsyncKernelClient"
"jupyter_client.asynchronous.AsyncKernelClient", config=True
)
client_factory: Type = Type(klass="jupyter_client.asynchronous.AsyncKernelClient")
client_factory: Type = Type(klass="jupyter_client.asynchronous.AsyncKernelClient", config=True)

# The PyZMQ Context to use for communication with the kernel.
context: Instance = Instance(zmq.asyncio.Context)
Expand Down