Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Nov 28, 2023
1 parent b2e3509 commit d8e6985
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -1031,7 +1031,7 @@ def generate_singlefile_data():
def _generate_singlefile_data(
computer: orm.Computer,
label: str = "restartfile",
entry_point_name: Optional[str] = None,
entry_point_name: str | None = None,
):
entry_point = format_entry_point_string("aiida.calculations", entry_point_name)

Expand Down Expand Up @@ -1060,7 +1060,7 @@ def generate_lammps_trajectory():
def _generate_lammps_trajectory(
computer: orm.Computer,
label: str = "trajectory",
entry_point_name: Optional[str] = None,
entry_point_name: str | None = None,
):
entry_point = format_entry_point_string("aiida.calculations", entry_point_name)

Expand Down Expand Up @@ -1091,8 +1091,8 @@ def generate_lammps_results():
def _generate_lammps_results(
computer: orm.Computer,
label: str = "results",
entry_point_name: Optional[str] = None,
data: Optional[dict] = None,
entry_point_name: str | None = None,
data: dict | None = None,
):
entry_point = format_entry_point_string("aiida.calculations", entry_point_name)

Expand Down
1 change: 1 addition & 0 deletions tests/test_parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import os

from aiida.plugins import ParserFactory

from aiida_lammps.parsers.parse_raw import parse_final_data, parse_outputfile
from .utils import TEST_DIR

Expand Down

0 comments on commit d8e6985

Please sign in to comment.