Skip to content

Commit

Permalink
Fixing an issue with the parser not being properly called in the forc…
Browse files Browse the repository at this point in the history
…e and md parsers.
  • Loading branch information
Jonathan Chico committed Apr 5, 2023
1 parent 5f234d2 commit 32157d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aiida_lammps/parsers/lammps/force.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from aiida_lammps.parsers.lammps.base import LammpsBaseParser


class LammpsForceParser(LAMMPSBaseParser):
class LammpsForceParser(LammpsBaseParser):
"""Parser for LAMMPS single point energy calculation."""

def __init__(self, node):
Expand Down
2 changes: 1 addition & 1 deletion aiida_lammps/parsers/lammps/md.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from aiida_lammps.parsers.lammps.base import LammpsBaseParser


class LammpsMdParser(LAMMPSBaseParser):
class LammpsMdParser(LammpsBaseParser):
"""Parser for LAMMPS MD calculations."""

def __init__(self, node):
Expand Down

0 comments on commit 32157d8

Please sign in to comment.