Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
yguclu authored Dec 14, 2023
1 parent 48e2ba3 commit efe348c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion psydac/linalg/basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@ def transpose(self, conjugate=False):
@staticmethod
def simplify(addends):
class_list = [a.__class__ for a in addends]
unique_list = [*{c: a for c, a in zip(class_list, addends}]
unique_list = [*{c: a for c, a in zip(class_list, addends)}]
if len(unique_list) == 1:
return addends
out = ()
Expand Down

0 comments on commit efe348c

Please sign in to comment.