Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianDeconinck committed Nov 14, 2024
1 parent 68b3636 commit bd3022d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyFV3/stencils/xppm.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def fx1_fn(courant, br, b0, bl):

@gtscript.function
def get_advection_mask(bl, b0, br):
from __externals__ import mord, i_start, i_end
from __externals__ import i_end, i_start, mord

if __INLINED(mord == 5):
smt5 = bl * br < 0
Expand Down
2 changes: 1 addition & 1 deletion pyFV3/stencils/yppm.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def fx1_fn(courant, br, b0, bl):

@gtscript.function
def get_advection_mask(bl, b0, br):
from __externals__ import mord, j_start, j_end
from __externals__ import j_end, j_start, mord

if __INLINED(mord == 5):
smt5 = bl * br < 0
Expand Down

0 comments on commit bd3022d

Please sign in to comment.