Skip to content

Commit

Permalink
- small assertion bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
amkrajewski committed Mar 28, 2023
1 parent 64752c9 commit 2aafaa6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pysipfenn/descriptorDefinitions/KS2022.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def onlyStructural(descriptor: np.ndarray) -> np.ndarray:
descriptorSplit[2],
descriptorSplit[4]
), axis=-1, dtype=np.float32)
assert ks2022_structural == (103,)
assert ks2022_structural.shape == (103,)

return ks2022_structural

Expand Down

0 comments on commit 2aafaa6

Please sign in to comment.