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 #355

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
2 changes: 1 addition & 1 deletion .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/astral-sh/ruff-pre-commit
rev: v0.6.9
rev: v0.8.6
hooks:
- id: ruff
args: ["--fix", "--unsafe-fixes"]
Expand Down
3 changes: 1 addition & 2 deletions openmmforcefields/tests/test_amber_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@
"""

import pathlib
from typing import List

import pytest

from openmmforcefields.utils import get_ffxml_path

amber_ffxml_filenames: List[str] = ["amber/" + file.name for file in pathlib.Path(get_ffxml_path()).glob("amber/*xml")]
amber_ffxml_filenames: list[str] = ["amber/" + file.name for file in pathlib.Path(get_ffxml_path()).glob("amber/*xml")]


@pytest.mark.parametrize(
Expand Down
Loading