Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottMacLachlan committed Oct 19, 2022
1 parent 587d812 commit 51d4bd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions irksome/dirk_stepper.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,12 +202,12 @@ def advance(self):
# Evaluate the Dirichlet BC at the current stage time
gmethod(gdat, gcur)

gmethod(gdat2,dat4bc(u0))
gmethod(gdat2, dat4bc(u0))
gdat -= gdat2

# Subtract previous stage values
for j in range(i):
gmethod(gdat2,dat4bc(ks[j]))
gmethod(gdat2, dat4bc(ks[j]))
gdat -= dtc * float(AA[i, j]) * gdat2

# Rescale gdat
Expand Down

0 comments on commit 51d4bd0

Please sign in to comment.