Skip to content

Commit

Permalink
Fix linting errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
kaueltzen committed Oct 7, 2024
1 parent 5106b84 commit 198bec5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion matminer/featurizers/site/tests/test_fingerprint.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def test_crystal_nn_fingerprint(self):

def test_chemenv_site_fingerprint(self):
cefp = ChemEnvSiteFingerprint.from_preset("multi_weights")
implemented_cetypes = set([gg.ce_symbol for gg in cefp.lgf.allcg.get_implemented_geometries()])
implemented_cetypes = {gg.ce_symbol for gg in cefp.lgf.allcg.get_implemented_geometries()}
assert set(cefp.cetypes).difference(implemented_cetypes) == set() # Added after issue #945
l = cefp.feature_labels()
cevals = cefp.featurize(self.sc, 0)
Expand Down

0 comments on commit 198bec5

Please sign in to comment.