From bd3022d0052d1ee0445d10f92a833d3582b4eca2 Mon Sep 17 00:00:00 2001 From: Florian Deconinck Date: Thu, 14 Nov 2024 11:06:23 -0500 Subject: [PATCH] Lint --- pyFV3/stencils/xppm.py | 2 +- pyFV3/stencils/yppm.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyFV3/stencils/xppm.py b/pyFV3/stencils/xppm.py index 1df8d42..38e1767 100644 --- a/pyFV3/stencils/xppm.py +++ b/pyFV3/stencils/xppm.py @@ -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 diff --git a/pyFV3/stencils/yppm.py b/pyFV3/stencils/yppm.py index 090327a..0b92f66 100644 --- a/pyFV3/stencils/yppm.py +++ b/pyFV3/stencils/yppm.py @@ -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