Skip to content

Commit

Permalink
Try fixing pyling
Browse files Browse the repository at this point in the history
  • Loading branch information
OriolAbril committed Sep 7, 2022
1 parent aea9bd9 commit 2eb46f1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion arviz/plots/backends/bokeh/kdeplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,9 @@ def plot_kde(
try:
import contourpy
except ImportError as err:
raise ImportError("'bokeh' kde contour plots needs ContourPy installed (pip install countourpy).") from err
raise ImportError(
"'bokeh' kde contour plots needs ContourPy installed (pip install countourpy)."
) from err

contour_kwargs = _init_kwargs_dict(contour_kwargs)
contourf_kwargs = _init_kwargs_dict(contourf_kwargs)
Expand Down

0 comments on commit 2eb46f1

Please sign in to comment.