From c7c8fdf8e424ab69c0ad23bf79036bfb4fda830b Mon Sep 17 00:00:00 2001 From: Bill Ladwig Date: Tue, 12 Mar 2019 11:54:04 -0600 Subject: [PATCH] PEP 8 --- test/comp_utest.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/comp_utest.py b/test/comp_utest.py index 08ad1fb..80ef2c6 100644 --- a/test/comp_utest.py +++ b/test/comp_utest.py @@ -14,7 +14,7 @@ from wrf import * TEST_FILE = ("/Users/ladwig/Documents/wrf_files/wrf_vortex_multi/moving_nest/" "wrfout_d02_2005-08-28_00:00:00") - + OUT_NC_FILE = "/tmp/wrftest.nc" NCFILE = nc(TEST_FILE) GROUP_FILES = [ @@ -676,10 +676,10 @@ if __name__ == "__main__": omp_set_num_threads(omp_get_num_procs()//2) omp_set_schedule(OMP_SCHED_STATIC, 0) omp_set_dynamic(False) - - varnames=["avo", "pvo", "eth", "dbz", "helicity", "updraft_helicity", - "omg", "pw", "rh", "slp", "td", "tk", "tv", "twb", "uvmet", - "cloudfrac", "ctt"] + + varnames = ["avo", "pvo", "eth", "dbz", "helicity", "updraft_helicity", + "omg", "pw", "rh", "slp", "td", "tk", "tv", "twb", "uvmet", + "cloudfrac", "ctt"] omp_set_num_threads(omp_get_num_procs()-1) omp_set_schedule(OMP_SCHED_STATIC, 0)