Skip to content

Commit 14b5a0d

Browse files
committed
Fix CI
1 parent ef5add1 commit 14b5a0d

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

doc/requirements.txt

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
plotly==6.0.1
22
jupytext==1.16.4
3-
jupyter-client<7
43
jupyter
54
notebook
65
pandas==1.4.0

plotly/__init__.py

+7-4
Original file line numberDiff line numberDiff line change
@@ -181,11 +181,14 @@ def hist_series(data_frame, **kwargs):
181181
new_kwargs = {k: kwargs[k] for k in kwargs if k not in skip}
182182
return histogram(data_frame, **new_kwargs)
183183

184+
184185
def _jupyter_labextension_paths():
185186
"""Called by Jupyter Lab Server to detect if it is a valid labextension and
186187
to install the extension.
187188
"""
188-
return [{
189-
'src': 'labextension/static',
190-
'dest': 'jupyterlab-plotly',
191-
}]
189+
return [
190+
{
191+
"src": "labextension/static",
192+
"dest": "jupyterlab-plotly",
193+
}
194+
]

0 commit comments

Comments
 (0)