Skip to content

[pre-commit.ci] pre-commit autoupdate #122

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
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 @@ -3,25 +3,25 @@

repos:
- repo: https://github.com/psf/black
rev: 24.10.0
rev: 25.1.0
hooks:
- id: black
- repo: https://github.com/pycqa/isort
rev: 5.13.2
rev: 6.0.1
hooks:
- id: isort
name: isort (python)
args: ["--profile", "black", "--filter-files", "--skip", "__init__.py"]
files: ^dodiscover/
- repo: https://github.com/pre-commit/mirrors-mypy
rev: "v1.13.0"
rev: "v1.15.0"
hooks:
- id: mypy
name: mypy (dodiscover)
args: ["--config-file", "pyproject.toml"]
files: ^dodiscover/
- repo: https://github.com/pre-commit/mirrors-mypy
rev: "v1.13.0"
rev: "v1.15.0"
hooks:
- id: mypy
name: mypy (tests)
Expand Down
2 changes: 1 addition & 1 deletion examples/intro/checking_validity_of_a_pag.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
unique graph, a PAG, in essence, represents a class of graphs that encode
the same conditional independence constraints.

PAGs model this relationship by displaying all common edge marks (tail and arrowhead) shared
PAGs model this relationship by displaying all common edge marks (tail and arrowhead) shared
by all members in the equivalence class and displaying circle endpoints for those marks
that are not common. That is, a circular endpoint (``*-o``) can represent both a directed
(``*->``) and tail (``*—``) endpoint in causal graphs within the equivalence class.
Expand Down
Loading