Skip to content

Commit

Permalink
fix typo in class name
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonBurns committed Mar 7, 2024
1 parent 4901d82 commit b32d523
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions chemprop/featurizers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
MorganFeaturizerMixin,
BinaryFeaturizerMixin,
CountFeaturizerMixin,
MorganBinaryFeaturzer,
MorganBinaryFeaturizer,
MorganCountFeaturizer,
MoleculeFeaturizerRegistry,
)
Expand All @@ -36,6 +36,6 @@
"MorganFeaturizerMixin",
"BinaryFeaturizerMixin",
"CountFeaturizerMixin",
"MorganBinaryFeaturzer",
"MorganBinaryFeaturizer",
"MorganCountFeaturizer",
]
2 changes: 1 addition & 1 deletion chemprop/featurizers/molecule.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def __call__(self, mol: Chem.Mol) -> np.ndarray:


@MoleculeFeaturizerRegistry("morgan_binary")
class MorganBinaryFeaturzer(MorganFeaturizerMixin, BinaryFeaturizerMixin, MoleculeFeaturizer):
class MorganBinaryFeaturizer(MorganFeaturizerMixin, BinaryFeaturizerMixin, MoleculeFeaturizer):
pass


Expand Down

0 comments on commit b32d523

Please sign in to comment.