Skip to content

Commit

Permalink
Fix flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
kinnala committed Mar 11, 2024
1 parent b86c1c8 commit 1a87458
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skfem/mapping/mapping_affine.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def _init_invA(self):
self.A[0, 1] * self.A[1, 0])
elif dim == 3:
self._detA = (self.A[0, 0] * (self.A[1, 1] * self.A[2, 2] -
self.A[1, 2] * self.A[2, 1]) -
self.A[1, 2] * self.A[2, 1]) -
self.A[0, 1] * (self.A[1, 0] * self.A[2, 2] -
self.A[1, 2] * self.A[2, 0]) +
self.A[0, 2] * (self.A[1, 0] * self.A[2, 1] -
Expand Down

0 comments on commit 1a87458

Please sign in to comment.