We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79c7fae commit 9e526c5Copy full SHA for 9e526c5
.github/workflows/ci.yml
@@ -14,7 +14,7 @@ jobs:
14
- uses: actions/checkout@v2
15
- run: pip install ruff
16
- run: ruff check # check linting violations
17
- - run: ruff format --check # check formatting
+ - run: ruff format --check --exclude *.ipynb # check formatting
18
19
docs:
20
runs-on: ubuntu-latest
hat/interactive/leaflet.py
@@ -358,7 +358,7 @@ def __init__(
358
try:
359
colormap = mpl.colormaps[colormap_style]
360
except KeyError:
361
- raise KeyError(f"Colormap {colormap_style} not found. " f"Available colormaps are: {mpl.colormaps}")
+ raise KeyError(f"Colormap {colormap_style} not found. Available colormaps are: {mpl.colormaps}")
362
363
super().__init__(colormap)
364
0 commit comments