Skip to content

Commit

Permalink
minor fixes to mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastroy committed Oct 1, 2024
1 parent 2e0de65 commit 2bfa5fa
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ repos:
rev: v1.9.0
hooks:
- id: mypy
args: ["--config", "pyproject.toml"]
args: ["--config-file", "pyproject.toml"]
# Misc
- repo: https://github.com/codespell-project/codespell
rev: v2.2.4
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,4 @@ clean:

.PHONY: pre-commit-setup
pre-commit-setup:
pre-commit install
pre-commit install
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output

html_theme = "furo"
html_static_path = []
html_static_path = [] # type: ignore


# Breathe configuration
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ strict_optional = true
ignore_missing_imports = true
explicit_package_bases = true

exclude = []
exclude = ["docs", "build"]

[tool.ruff]
exclude = [
Expand Down

0 comments on commit 2bfa5fa

Please sign in to comment.