Skip to content

Commit

Permalink
Fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
utf committed Mar 25, 2024
1 parent 9226eb5 commit f425429
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pymatgen==2023.3.23
inflect==6.0.4
networkx==3.0
matminer==0.8.0
monty==2022.1.19
monty==2023.11.3
pubchempy==1.0.4
pybtex==0.24.0
mp_api==0.41.2
2 changes: 1 addition & 1 deletion robocrys/describe/describer.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def get_component_makeup_summary(self) -> str:

if component_group.dimensionality in [1, 2]:
orientations = list(
{c.orientation for c in component_group.components}
{str(c.orientation) for c in component_group.components}
)
s_direction = en.plural("direction", len(orientations))
comp_desc += " oriented in the {} {}".format(
Expand Down

0 comments on commit f425429

Please sign in to comment.