File tree Expand file tree Collapse file tree 2 files changed +15
-10
lines changed Expand file tree Collapse file tree 2 files changed +15
-10
lines changed Original file line number Diff line number Diff line change @@ -826,15 +826,18 @@ def get_valences(struct):
826
826
[
827
827
["Environment" , name ],
828
828
["IUPAC Symbol" , co .IUPAC_symbol_str ],
829
- [get_tooltip (
830
- "CSM" ,
831
- "The continuous symmetry measure (CSM) describes the similarity to an "
832
- "ideal coordination environment. It can be understood as a 'distance' to "
833
- "a shape and ranges from 0 to 100 in which 0 corresponds to a "
834
- "coordination environment that is exactly identical to the ideal one. A "
835
- "CSM larger than 5.0 already indicates a relatively strong distortion of "
836
- "the investigated coordination environment." ,
837
- ), f"{ env [0 ]['csm' ]:.2f} " ],
829
+ [
830
+ get_tooltip (
831
+ "CSM" ,
832
+ "The continuous symmetry measure (CSM) describes the similarity to an "
833
+ "ideal coordination environment. It can be understood as a 'distance' to "
834
+ "a shape and ranges from 0 to 100 in which 0 corresponds to a "
835
+ "coordination environment that is exactly identical to the ideal one. A "
836
+ "CSM larger than 5.0 already indicates a relatively strong distortion of "
837
+ "the investigated coordination environment." ,
838
+ ),
839
+ f"{ env [0 ]['csm' ]:.2f} " ,
840
+ ],
838
841
["Interactive View" , view ],
839
842
]
840
843
)
Original file line number Diff line number Diff line change @@ -37,7 +37,9 @@ def get_molecule_graph_scene(
37
37
"""
38
38
39
39
if visualize_bond_orders :
40
- vis_mol_graph = MoleculeGraph .with_local_env_strategy (self .molecule , OpenBabelNN ())
40
+ vis_mol_graph = MoleculeGraph .with_local_env_strategy (
41
+ self .molecule , OpenBabelNN ()
42
+ )
41
43
else :
42
44
vis_mol_graph = self
43
45
legend = legend or Legend (self .molecule )
You can’t perform that action at this time.
0 commit comments