Skip to content

Commit 339853e

Browse files
committed
Fix on flake link
1 parent fc5f020 commit 339853e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/Ensemble.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1184,7 +1184,7 @@ def update_weights(self, new_dynamical_matrix, newT, update_q = False):
11841184
if not self.ignore_small_w:
11851185
trans_original = CC.Methods.get_translations(pols_original, super_struct0.get_masses_array())
11861186
else:
1187-
trans_original = np.abs(w) < CC.Phonons.__EPSILON_W__
1187+
trans_original = np.abs(w_original) < CC.Phonons.__EPSILON_W__
11881188

11891189
w = w_original[~trans_original]
11901190

0 commit comments

Comments
 (0)