Skip to content

Commit

Permalink
makes AtomMappers subclass from GufeTokenizable (#266)
Browse files Browse the repository at this point in the history
Co-authored-by: Irfan Alibay <IAlibay@users.noreply.github.com>
  • Loading branch information
richardjgowers and IAlibay authored Jan 19, 2024
1 parent 75cb071 commit a426dce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gufe/mapping/atom_mapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
from collections.abc import Iterator
import gufe

from ..tokenization import GufeTokenizable
from .atom_mapping import AtomMapping


class AtomMapper(abc.ABC):
class AtomMapper(GufeTokenizable):
"""A class for manufacturing mappings"""
@abc.abstractmethod
def suggest_mappings(self, A: gufe.Component,
Expand Down

0 comments on commit a426dce

Please sign in to comment.