Skip to content

Commit 5f0fa10

Browse files
committed
Format with ruff
1 parent f4ad466 commit 5f0fa10

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+74
-157
lines changed

conftest.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# SPDX-FileCopyrightText: Blair Bonnett
22
# SPDX-License-Identifier: BSD-3-Clause
33

4+
45
def pytest_itemcollected(item):
56
"""Use the test docstring (if available) as the node ID.
67

data/share/matplotlib-pgfutils/examples/threecol/double.py

-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@
33

44
from pgfutils import save, setup_figure
55

6-
76
setup_figure(width=1, height=0.4, columns=2)
87

98
from matplotlib import pyplot as plt
109
import numpy as np
1110

12-
1311
t = np.linspace(0, 10, 400)
1412
s = 0.3 * t + 2.5 * np.cos(2 * np.pi * 0.85 * t) - 0.8
1513

data/share/matplotlib-pgfutils/examples/threecol/single.py

-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@
33

44
from pgfutils import save, setup_figure
55

6-
76
setup_figure(width=1, height=0.4, columns=1)
87

98
from matplotlib import pyplot as plt
109
import numpy as np
1110

12-
1311
t = np.linspace(0, 10, 200)
1412
s = 0.3 * t + 2.5 * np.cos(2 * np.pi * 0.85 * t) - 0.8
1513

data/share/matplotlib-pgfutils/examples/threecol/triple.py

-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@
33

44
from pgfutils import save, setup_figure
55

6-
76
setup_figure(width=1, height=0.4, columns=3)
87

98
from matplotlib import pyplot as plt
109
import numpy as np
1110

12-
1311
t = np.linspace(0, 10, 400)
1412
s = 0.3 * t + 2.5 * np.cos(2 * np.pi * 0.85 * t) - 0.8
1513

data/share/matplotlib-pgfutils/examples/twocol/double.py

-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@
33

44
from pgfutils import save, setup_figure
55

6-
76
setup_figure(width=1, height=0.4, columns=2)
87

98
from matplotlib import pyplot as plt
109
import numpy as np
1110

12-
1311
t = np.linspace(0, 10, 400)
1412
s = 0.3 * t + 2.5 * np.cos(2 * np.pi * 0.85 * t) - 0.8
1513

data/share/matplotlib-pgfutils/examples/twocol/single.py

-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@
33

44
from pgfutils import save, setup_figure
55

6-
76
setup_figure(width=1, height=0.4, columns=1)
87

98
from matplotlib import pyplot as plt
109
import numpy as np
1110

12-
1311
t = np.linspace(0, 10, 200)
1412
s = 0.3 * t + 2.5 * np.cos(2 * np.pi * 0.85 * t) - 0.8
1513

pyproject.toml

+5-1
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,14 @@ select = [
6464
"W", # pycodestyle warnings
6565
]
6666

67-
[tool.ruff.isort]
67+
[tool.ruff.lint.isort]
6868
combine-as-imports = true
6969
force-sort-within-sections = true
7070

71+
[tool.ruff.lint.per-file-ignores]
72+
"data/**.py" = ["E402"]
73+
"tests/**.py" = ["E402"]
74+
7175

7276
#
7377
# Testing

tests/sources/environment/check_set/basic.py

-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,10 @@
33

44
from pgfutils import save, setup_figure
55

6-
76
setup_figure()
87

98
import os
109

11-
1210
name1 = os.environ.get("name1", "not set")
1311
name2 = os.environ.get("name2", "not set")
1412

tests/sources/environment/check_set/override.py

-3
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,14 @@
33

44
import os
55

6-
76
os.environ["name1"] = "original value"
87

98
from pgfutils import save, setup_figure
109

11-
1210
setup_figure()
1311

1412
import os
1513

16-
1714
name1 = os.environ.get("name1", "not set")
1815
name2 = os.environ.get("name2", "not set")
1916

tests/sources/environment/invalid/basic.py

-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@
33

44
from pgfutils import save, setup_figure
55

6-
76
setup_figure()
87
save()

tests/sources/environment/repeated/basic.py

-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,10 @@
33

44
from pgfutils import save, setup_figure
55

6-
76
setup_figure()
87

98
import os
109

11-
1210
name1 = os.environ.get("name1", "not set")
1311
name2 = os.environ.get("name2", "not set")
1412

tests/sources/external/cartopy_figure.py

-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@
33

44
from pgfutils import save, setup_figure
55

6-
76
setup_figure(width=1, height=1)
87

98
import cartopy.crs as ccrs
109
import matplotlib.pyplot as plt
1110

12-
1311
ax = plt.axes(projection=ccrs.PlateCarree())
1412
ax.stock_img()
1513

tests/sources/external/seaborn_figure.py

-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,10 @@
33

44
from pgfutils import save, setup_figure
55

6-
76
setup_figure(width=1, height=1)
87

98
import seaborn as sns
109

11-
1210
sns.set()
1311
tips = sns.load_dataset("tips")
1412
sns.relplot(

tests/sources/fix_raster_paths/figures/noise.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,13 @@
33

44
from pgfutils import save, setup_figure
55

6-
76
setup_figure(width=0.95, height=0.4)
87

98
from matplotlib import pyplot as plt
109
import numpy as np
1110

12-
13-
noise = np.random.randn(512, 256)
11+
rng = np.random.default_rng(seed=100)
12+
noise = rng.random((512, 256))
1413
plt.imshow(noise, interpolation="nearest", aspect="auto")
1514
plt.colorbar()
1615

tests/sources/fix_raster_paths/speckle.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,13 @@
33

44
from pgfutils import save, setup_figure
55

6-
76
setup_figure(width=0.95, height=0.4)
87

98
from matplotlib import pyplot as plt
109
import numpy as np
1110

12-
13-
noise = np.random.randn(512, 256) + 1j * np.random.randn(512, 256)
11+
rng = np.random.default_rng(seed=1010)
12+
noise = rng.standard_normal((512, 256)) + 1j * rng.standard_normal((512, 256))
1413
plt.imshow(np.abs(noise) ** 2, interpolation="nearest", aspect="auto")
1514
plt.colorbar()
1615

tests/sources/fonts/custom_font.py

-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@
33

44
from pgfutils import save, setup_figure
55

6-
76
setup_figure(width=0.95, height=0.4)
87

98
from matplotlib import pyplot as plt
109
import numpy as np
1110

12-
1311
t = np.linspace(-4, 4, 201)
1412
plt.plot(t, 2 * np.sin(2 * np.pi * 2.5 * t))
1513

tests/sources/fonts/noconfig/custom_font.py

-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
from pgfutils import save, setup_figure
55

6-
76
setup_figure(
87
width=0.5,
98
height=0.4,
@@ -16,7 +15,6 @@
1615
from matplotlib import pyplot as plt
1716
import numpy as np
1817

19-
2018
t = np.linspace(-4, 4, 201)
2119
plt.plot(t, 2 * np.sin(2 * np.pi * 2.5 * t))
2220

tests/sources/kwargs/default.py

-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@
33

44
from pgfutils import save, setup_figure
55

6-
76
setup_figure(width=1, height=1)
87
save()

tests/sources/kwargs/overridden.py

-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@
33

44
from pgfutils import save, setup_figure
55

6-
76
setup_figure(width=1, height=1, figure_background="red")
87
save()

tests/sources/legend/legend_only.py

-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@
33

44
from pgfutils import save, setup_figure
55

6-
76
setup_figure(width=1, height=1)
87

98
from matplotlib import pyplot as plt
109
from matplotlib.lines import Line2D
1110

12-
1311
cmap = plt.cm.coolwarm
1412
custom_lines = [
1513
Line2D([0], [0], color=cmap(0), lw=4),

tests/sources/pythonpath/using_custom_lib.py

-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@
33

44
from pgfutils import save, setup_figure
55

6-
76
setup_figure(width=1, height=1)
87

98
from custom_library import get_data
109
import matplotlib.pyplot as plt
1110

12-
1311
t, s = get_data()
1412
plt.plot(t, s)
1513

tests/sources/tikzpicture/square.py

-2
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,11 @@
44
# Set up the figure environment.
55
from pgfutils import save, setup_figure
66

7-
87
setup_figure(width=0.9, height=0.4)
98

109
from matplotlib import pyplot as plt
1110
import numpy as np
1211

13-
1412
# Generate square wave from a few terms of its Fourier series.
1513
f = 3
1614
t = np.linspace(0, 1, 501)

tests/sources/tracking/config_enabled/config_enabled.py

-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@
33

44
from pgfutils import add_dependencies, save, setup_figure
55

6-
76
setup_figure(width=1, height=1)
87

98
from matplotlib import pyplot as plt
109
import numpy as np
1110

12-
1311
noise = np.load("noise.npy")
1412
plt.imshow(noise)
1513
plt.colorbar()

tests/sources/tracking/dependency_loadtxt.py

-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@
33

44
from pgfutils import save, setup_figure
55

6-
76
setup_figure(width=1, height=1)
87

98
from matplotlib import pyplot as plt
109
import numpy as np
1110

12-
1311
data = np.loadtxt("scatter.csv", delimiter=",", dtype=int)
1412

1513
x = data[:, :3]

tests/sources/tracking/dependency_npy.py

-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@
33

44
from pgfutils import save, setup_figure
55

6-
76
setup_figure(width=1, height=1)
87

98
from matplotlib import pyplot as plt
109
import numpy as np
1110

12-
1311
data = np.load("noise.npy")
1412

1513
x = data[:, :3]

tests/sources/tracking/dependency_pathlib.py

-2
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,13 @@
33

44
from pgfutils import save, setup_figure
55

6-
76
setup_figure(width=1, height=1)
87

98
import pathlib
109

1110
from matplotlib import pyplot as plt
1211
import numpy as np
1312

14-
1513
datastr = pathlib.Path("scatter.csv").read_text()
1614
data = np.genfromtxt(datastr.splitlines(), delimiter=",", dtype=int)
1715

tests/sources/tracking/extra_dirs/multi.py

-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@
33

44
from pgfutils import add_dependencies, save, setup_figure
55

6-
76
setup_figure(width=1, height=1)
87

98
from matplotlib import pyplot as plt
109
import numpy as np
1110

12-
1311
noise = np.load("../noise.npy")
1412
plt.imshow(noise)
1513
plt.colorbar()

tests/sources/tracking/imports/cfg_extra/figure.py

-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@
33

44
from pgfutils import save, setup_figure
55

6-
76
setup_figure(height=0.3)
87

98
from custom_lib import get_data
109
from matplotlib import pyplot as plt
1110

12-
1311
t, s = get_data()
1412
plt.plot(t, s)
1513

tests/sources/tracking/imports/cfg_pythonpath/figure.py

-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@
33

44
from pgfutils import save, setup_figure
55

6-
76
setup_figure(height=0.3)
87

98
from custom_lib import get_data
109
from matplotlib import pyplot as plt
1110

12-
1311
t, s = get_data()
1412
plt.plot(t, s)
1513

0 commit comments

Comments
 (0)