Skip to content

Commit 9914377

Browse files
author
Weiwei Wang
committed
try to fix fail for python3
1 parent d38d4eb commit 9914377

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fidimag/atomistic/sllg.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ def set_options(self, dt=1e-15, theta=1.0, gamma=const.gamma, k_B=const.k_B, see
4242
self.k_B = k_B
4343
self.dt = dt
4444
self.theta = theta
45-
self.theta1 = 1-0.5/theta;
46-
self.theta2 = 0.5/theta;
45+
self.theta1 = 1-0.5/theta
46+
self.theta2 = 0.5/theta
4747

4848
def run_step(self):
4949

0 commit comments

Comments
 (0)