Skip to content

Commit

Permalink
return all wcs
Browse files Browse the repository at this point in the history
  • Loading branch information
killiansheriff committed Nov 5, 2024
1 parent 52e123a commit 435a2aa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/WarrenCowleyParameters/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,8 @@ def _get_labels_and_values(self, unique_types, wc_for_shells, shell_index):
labels, values = [], []
idx = range(len(unique_types))

for i, j in itertools.combinations_with_replacement(idx, 2):
# for i, j in itertools.combinations_with_replacement(idx, 2):
for i, j in itertools.combinations(idx, 2):
namei = self.get_type_name(unique_types[i])
namej = self.get_type_name(unique_types[j])
labels.append(f"{namei}-{namej}")
Expand Down

0 comments on commit 435a2aa

Please sign in to comment.