Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
SurgeArrester committed Feb 27, 2021
1 parent 4af42bc commit cd400c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ElM2D/ElM2D.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ def _pool_ElMD(self, input_tuple):
'''
distances = np.ndarray(len(input_tuple))

for input_1, input_2 in input_tuple:
for i, (input_1, input_2) in enumerate(input_tuple):
distances[i] = EMD(self.input_mat[input_1], self.input_mat[input_2])

return distances
Expand Down

0 comments on commit cd400c1

Please sign in to comment.