Skip to content

Commit

Permalink
MAINT: Fixed an issue where CP2KMM_Result did not inherit from `CP2…
Browse files Browse the repository at this point in the history
…K_Result` (#235)
  • Loading branch information
BvB93 committed Dec 15, 2020
1 parent 718f2da commit a084860
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/qmflows/packages/cp2k_mm.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from scm import plams

from .packages import Result, parse_output_warnings, load_properties
from .cp2k_package import CP2K
from .cp2k_package import CP2K, CP2K_Result
from ..cp2k_utils import set_prm, _map_psf_atoms, CP2K_KEYS_ALIAS
from ..parsers.cp2KParser import parse_cp2k_warnings
from ..settings import Settings
Expand All @@ -29,7 +29,7 @@
__all__ = ['cp2k_mm']


class CP2KMM_Result(Result):
class CP2KMM_Result(CP2K_Result):
"""A class providing access to CP2KMM result."""

prop_mapping: ClassVar[_Settings] = load_properties('CP2KMM', prefix='properties')
Expand Down

0 comments on commit a084860

Please sign in to comment.