Skip to content

Commit

Permalink
mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
JochenSiegWork committed Nov 15, 2024
1 parent 9de0025 commit c5214e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_elements/test_mol2any/test_mol2concatenated.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def test_features_names(self) -> None: # pylint: disable=too-many-arguments
seen_names = 0
for elem_name, elem in elements_subset:
self.assertTrue(hasattr(elem, "feature_names"))
elem_feature_names = elem.feature_names
elem_feature_names = elem.feature_names # type: ignore[attr-defined]
elem_n_features = len(elem_feature_names)
relevant_names = feature_names[
seen_names : seen_names + elem_n_features
Expand Down

0 comments on commit c5214e6

Please sign in to comment.