Skip to content

Commit

Permalink
Updating format of unknown geometry summaries to match other summaries
Browse files Browse the repository at this point in the history
  • Loading branch information
aarongarrison committed Apr 26, 2024
1 parent 46abd16 commit 60122e1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion molSimplify/Classes/mol3D.py
Original file line number Diff line number Diff line change
Expand Up @@ -5739,9 +5739,10 @@ def get_geometry_type_distance(self, max_dev=1e6, close_dev=1e-2,
#should we indicate somehow that these are unknown due to a different coordination number?
results = {
"geometry": "unknown",
"rmsd": False,
"rmsd": np.NAN,
"summary": {},
"hapticity": hapt,
"close_rmsds": False
}
return results

Expand Down

0 comments on commit 60122e1

Please sign in to comment.