Skip to content

Commit cd12061

Browse files
authored
Merge pull request #415 from JaGeo/pre-commit-ci-update-config
pre-commit autoupdate
2 parents 23e3e32 + f6b2fa6 commit cd12061

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ default_language_version:
1010
python: python3
1111
repos:
1212
- repo: https://github.com/astral-sh/ruff-pre-commit
13-
rev: v0.12.11
13+
rev: v0.13.3
1414
hooks:
1515
- id: ruff
1616
args: [--fix]
@@ -26,7 +26,7 @@ repos:
2626
hooks:
2727
- id: pyupgrade
2828
- repo: https://github.com/asottile/blacken-docs
29-
rev: 1.19.1
29+
rev: 1.20.0
3030
hooks:
3131
- id: blacken-docs
3232
additional_dependencies: [black]
@@ -39,7 +39,7 @@ repos:
3939
- id: rst-directive-colons
4040
- id: rst-inline-touching-normal
4141
- repo: https://github.com/pre-commit/mirrors-mypy
42-
rev: v1.17.1
42+
rev: v1.18.2
4343
hooks:
4444
- id: mypy
4545
files: lobsterpy/.*
@@ -55,6 +55,6 @@ repos:
5555
args: [--ignore-words-list, 'titel,alls,ans,nd,mater,nwo,te,hart,ontop,ist,ot,fo']
5656
types_or: [python, rst, markdown]
5757
- repo: https://github.com/RobertCraigie/pyright-python
58-
rev: v1.1.404
58+
rev: v1.1.406
5959
hooks:
6060
- id: pyright

tests/plotting/test_plotting.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -553,9 +553,9 @@ def test_plot_data(self, icohplist_nacl, icobilist_nacl, icooplist_nacl):
553553
ax_icoop_c = icoop_plotter.get_plot(xlim=(0, 4), ylim=(0, 6), color_interactions=True).gca()
554554
ax_icohp_c = icohp_plotter.get_plot(xlim=(0, 4), ylim=(0, 6), color_interactions=True).gca()
555555
ax_icobi_c = icobi_plotter.get_plot(xlim=(0, 4), ylim=(0, 6), color_interactions=True).gca()
556-
handles_icoop, labels_icoop = ax_icoop_c.get_legend_handles_labels()
557-
handles_icohp, labels_icohp = ax_icohp_c.get_legend_handles_labels()
558-
handles_icobi, labels_icobi = ax_icobi_c.get_legend_handles_labels()
556+
_handles_icoop, labels_icoop = ax_icoop_c.get_legend_handles_labels()
557+
_handles_icohp, labels_icohp = ax_icohp_c.get_legend_handles_labels()
558+
_handles_icobi, labels_icobi = ax_icobi_c.get_legend_handles_labels()
559559
assert len(set(labels_icoop)) == 3
560560
assert len(set(labels_icobi)) == 3
561561
assert len(set(labels_icohp)) == 3

0 commit comments

Comments
 (0)