Skip to content
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

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

Closed
wants to merge 2 commits into from
Closed
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
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ci:
autoupdate_schedule: "quarterly"
repos:
- repo: https://github.com/psf/black
rev: 23.12.1
rev: 24.4.2
hooks:
- id: black
files: ^physical_validation
Expand All @@ -12,7 +12,7 @@ repos:
- id: isort
files: ^physical_validation
- repo: https://github.com/PyCQA/flake8
rev: 6.1.0
rev: 7.1.0
hooks:
- id: flake8
files: ^physical_validation
8 changes: 5 additions & 3 deletions physical_validation/tests/test_data_gromacs_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,11 @@ def get_gromacs_simulation_data(
mdp=gromacs_files["parameters"],
top=gromacs_files["topology"],
edr=gromacs_files["energy"],
gro=gromacs_files["final configuration"]
if not use_full_trajectory
else None,
gro=(
gromacs_files["final configuration"]
if not use_full_trajectory
else None
),
trr=gromacs_files["trajectory"] if use_full_trajectory else None,
)

Expand Down
1 change: 1 addition & 0 deletions physical_validation/util/error.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

class PhysicalValidationError(Exception):
r"""Base class for exceptions in the physical_validation module."""

pass


Expand Down
Loading