Skip to content

Commit

Permalink
style: skip fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
tanlin2013 committed Dec 23, 2024
1 parent f4f2ff5 commit d2ee1be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qlinks/model/spin1_xy_model_1d.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ def _build_h3_term(self):
for site in range(self.n):
self._hamiltonian += 0.5 * self.coup_j3 * kron(
[s_plus, idty, idty, s_minus, *[idty] * (self.n - 4)], shift=site
)
) # fmt: skip
self._hamiltonian += 0.5 * self.coup_j3 * kron(
[s_minus, idty, idty, s_plus, *[idty] * (self.n - 4)], shift=site
)
) # fmt: skip
if not self.periodic and site == self.n - 4:
break

Expand Down

0 comments on commit d2ee1be

Please sign in to comment.