From 492f72659ed0643248c5ef19830b9323c04058d3 Mon Sep 17 00:00:00 2001 From: NichtJens Date: Thu, 21 Oct 2021 17:26:31 +0200 Subject: [PATCH] fixed callback argument signature --- docs/source/examples/Variable Inspector.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/examples/Variable Inspector.ipynb b/docs/source/examples/Variable Inspector.ipynb index 3350e3d3e1..6dba4d55d4 100644 --- a/docs/source/examples/Variable Inspector.ipynb +++ b/docs/source/examples/Variable Inspector.ipynb @@ -73,7 +73,7 @@ " self.closed = True\n", " VariableInspectorWindow.instance = None\n", "\n", - " def _fill(self):\n", + " def _fill(self, _result):\n", " \"\"\"Fill self with variable information.\"\"\"\n", " values = self.namespace.who_ls()\n", " self._table.value = '
NameTypeValue
' + \\\n",