Skip to content

Commit 2b5b354

Browse files
committed
Resolving bug with dash 0.36 that was introduced due to
this refactoring: plotly/dash#531
1 parent db33f68 commit 2b5b354

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

django_plotly_dash/dash_wrapper.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -403,8 +403,7 @@ def callback(self, output, inputs=[], state=[], events=[]): # pylint: disable=da
403403
'Invoke callback, adjusting variable names as needed'
404404
return super(WrappedDash, self).callback(self._fix_callback_item(output),
405405
[self._fix_callback_item(x) for x in inputs],
406-
[self._fix_callback_item(x) for x in state],
407-
[self._fix_callback_item(x) for x in events])
406+
[self._fix_callback_item(x) for x in state])
408407

409408
def dispatch(self):
410409
'Perform dispatch, using request embedded within flask global state'

frozen_dev.txt

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ cmarkgfm==0.4.2
2020
constantly==15.1.0
2121
coverage==4.5.1
2222
daphne==2.2.2
23-
dash==0.28.2
24-
dash-core-components==0.33.0
25-
dash-html-components==0.13.2
26-
dash-renderer==0.14.3
23+
dash==0.36
24+
dash-core-components==0.43
25+
dash-html-components==0.13.5
26+
dash-renderer==0.17
2727
decorator==4.3.0
2828
Django==2.1.2
2929
django-bootstrap4==0.0.7
@@ -63,7 +63,7 @@ pathlib2==2.3.2
6363
pathtools==0.1.2
6464
pkg-resources==0.0.0
6565
pkginfo==1.4.2
66-
plotly==3.3.0
66+
plotly==3.5.0
6767
pluggy==0.7.1
6868
port-for==0.3.1
6969
py==1.7.0

0 commit comments

Comments
 (0)