Skip to content

Commit f6130ec

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 0110c05 commit f6130ec

File tree

6 files changed

+15
-14
lines changed

6 files changed

+15
-14
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,4 +254,4 @@ def linkcode_resolve(domain, info):
254254

255255
fn = os.path.relpath(fn, start=os.path.dirname(mpl_inter.__file__))
256256

257-
return f"https://github.com/mpl-extensions/mpl-interactions/blob/main/mpl_interactions/{fn}{linespec}" # noqa: E501
257+
return f"https://github.com/mpl-extensions/mpl-interactions/blob/main/mpl_interactions/{fn}{linespec}"

docs/examples/context.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"cells": [
33
{
44
"cell_type": "markdown",
5-
"id": "9bdc7777-5241-4944-a12b-46f05c894dbe",
5+
"id": "0",
66
"metadata": {},
77
"source": [
88
"# Contextmanager for Controls object\n",
@@ -14,7 +14,7 @@
1414
{
1515
"cell_type": "code",
1616
"execution_count": null,
17-
"id": "4c34e1ff-3ef3-4090-a2bd-7dcb3701e58b",
17+
"id": "1",
1818
"metadata": {
1919
"tags": []
2020
},
@@ -25,7 +25,7 @@
2525
},
2626
{
2727
"cell_type": "markdown",
28-
"id": "28ae4a71-a451-4846-be37-161a42d4a18e",
28+
"id": "2",
2929
"metadata": {},
3030
"source": [
3131
"## Using all params\n",
@@ -63,7 +63,7 @@
6363
{
6464
"cell_type": "code",
6565
"execution_count": null,
66-
"id": "852d736e-2839-4b22-9bd5-1e7b4e35a1d9",
66+
"id": "3",
6767
"metadata": {
6868
"tags": []
6969
},

docs/examples/gallery/heatmap_slicer.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
=============
55
66
"""
7+
78
import matplotlib.pyplot as plt
89
import numpy as np
910

docs/examples/gallery/mpl-sliders-same-figure.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
Demonstration of how to provide a matplotlib slider to prevent
77
the creation of a separate controls figure.
88
"""
9+
910
import matplotlib.pyplot as plt
1011
import numpy as np
1112
from matplotlib.widgets import Slider

docs/examples/text-annotations.ipynb

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"cells": [
33
{
44
"cell_type": "markdown",
5-
"id": "ddddb250-faff-496c-8f0e-6935196ec14a",
5+
"id": "0",
66
"metadata": {},
77
"source": [
88
"# Text and Annotations\n",
@@ -16,7 +16,7 @@
1616
{
1717
"cell_type": "code",
1818
"execution_count": null,
19-
"id": "ec2f6996-5f39-4009-a94d-e3a3fda108d9",
19+
"id": "1",
2020
"metadata": {
2121
"tags": []
2222
},
@@ -31,7 +31,7 @@
3131
},
3232
{
3333
"cell_type": "markdown",
34-
"id": "692989d9-07f1-4969-81d8-fc330f0aa5d4",
34+
"id": "2",
3535
"metadata": {},
3636
"source": [
3737
"## Working with text strings.\n",
@@ -50,7 +50,7 @@
5050
{
5151
"cell_type": "code",
5252
"execution_count": null,
53-
"id": "d97390af-872e-42f5-a939-03b734b1cf4f",
53+
"id": "3",
5454
"metadata": {
5555
"tags": []
5656
},
@@ -84,7 +84,7 @@
8484
},
8585
{
8686
"cell_type": "markdown",
87-
"id": "1e152d5d-6c6f-4e87-b5d6-f6755f4bed17",
87+
"id": "4",
8888
"metadata": {},
8989
"source": [
9090
"## Arbitrarily placed text\n",
@@ -95,7 +95,7 @@
9595
{
9696
"cell_type": "code",
9797
"execution_count": null,
98-
"id": "1ccdd8c4-91fa-440a-9a2d-dbea694ee92d",
98+
"id": "5",
9999
"metadata": {
100100
"tags": []
101101
},
@@ -125,7 +125,7 @@
125125
},
126126
{
127127
"cell_type": "markdown",
128-
"id": "e2aafbc0-7958-410e-a3b8-ce0a8a75ef30",
128+
"id": "6",
129129
"metadata": {
130130
"jp-MarkdownHeadingCollapsed": true,
131131
"tags": []
@@ -137,7 +137,7 @@
137137
{
138138
"cell_type": "code",
139139
"execution_count": null,
140-
"id": "8eb7da4d-3e48-4b28-85a8-080ff85eee0d",
140+
"id": "7",
141141
"metadata": {
142142
"tags": []
143143
},

mpl_interactions/pyplot.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
Matplotlib widgets.
77
""" # noqa: D205
88

9-
109
from collections.abc import Callable
1110
from numbers import Number
1211

0 commit comments

Comments
 (0)