Skip to content

Commit

Permalink
remove some bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
qzhu2017 committed Aug 30, 2024
1 parent 125ac82 commit 07d63b3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ jobs:
- name: Test_symmetry
run: pytest tests/test_symmetry.py

- name: Test_supergroup
run: pytest tests/test_supergroup.py

- name: Test_group
run: pytest tests/test_group.py

- name: Test_lego
run: pytest tests/test_lego.py

- name: Test_supergroup
run: pytest tests/test_supergroup.py

#- name: Test_xrd
# run: pytest tests/test_xrd.py

Expand Down
4 changes: 2 additions & 2 deletions pyxtal/symmetry.py
Original file line number Diff line number Diff line change
Expand Up @@ -1659,8 +1659,8 @@ def path_to_general_wp(self, index=1, max_steps=1):
a list of (g_types, subgroup_id, spg_number, wp_list (optional))
"""
# label = [str(self[index].multiplicity) + self[index].letter]
k_subgroup = subgroup_data.get_k_subgroup()
t_subgroup = subgroup_data.get_t_subgroup()
k_subgroup = SYMDATA.get_k_subgroup()
t_subgroup = SYMDATA.get_t_subgroup()

label = [self[index].get_label()]
potential = [[(None, None, self.number, label)]]
Expand Down

0 comments on commit 07d63b3

Please sign in to comment.