Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ ci:
repos:

- repo: https://github.com/asottile/blacken-docs
rev: "1.18.0"
rev: "1.20.0"
hooks:
- id: blacken-docs
additional_dependencies: [black==23.7.0]

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: "v4.6.0"
rev: "v6.0.0"
hooks:
- id: check-added-large-files
- id: check-case-conflict
Expand All @@ -38,13 +38,13 @@ repos:
- id: rst-inline-touching-normal

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.6.2"
rev: "v0.15.20"
hooks:
- id: ruff
args: ["--fix", "--show-fixes"]

- repo: https://github.com/codespell-project/codespell
rev: "v2.3.0"
rev: "v2.4.2"
hooks:
- id: codespell

Expand Down
6 changes: 3 additions & 3 deletions src/supercapacitors/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
from supercapacitors.entry_point import Model, models, parameter_sets

__all__ = [
"__version__",
"pybamm",
"parameter_sets",
"Model",
"__version__",
"models",
"parameter_sets",
"pybamm",
]
Loading