From d417eb74abc535f11f5138b20d38ba9c2a35db23 Mon Sep 17 00:00:00 2001 From: Bill Ladwig Date: Tue, 18 Dec 2018 16:15:52 -0700 Subject: [PATCH] Fix typos --- src/wrf/routines.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wrf/routines.py b/src/wrf/routines.py index 00821e5..7d0644b 100644 --- a/src/wrf/routines.py +++ b/src/wrf/routines.py @@ -27,7 +27,7 @@ from .g_wind import (get_destag_wspd_wdir, get_destag_wspd_wdir10, get_destag_wspd, get_destag_wdir, get_destag_wspd10, get_destag_wdir10) from .g_times import get_times, get_xtimes -from .g_cloudfrac import (get_cloudfrac, get_low_cloudfrac, get_mid_cloudfrac. +from .g_cloudfrac import (get_cloudfrac, get_low_cloudfrac, get_mid_cloudfrac, get_high_cloudfrac) @@ -93,7 +93,7 @@ _FUNC_MAP = {"cape2d" : get_2dcape, "wspd10" : get_destag_wspd10, "wdir10" : get_destag_wdir10, "low_cfrac" : get_low_cloudfrac, - "mid_cfrac" : get_mid_cloudfrac. + "mid_cfrac" : get_mid_cloudfrac, "high_cfrac" : get_high_cloudfrac } @@ -159,7 +159,7 @@ _VALID_KARGS = {"cape2d" : ["missing"], "low_cloudfrac" : ["vert_type", "low_thresh", "mid_thresh", "high_thresh"], "mid_cloudfrac" : ["vert_type", "low_thresh", - "mid_thresh", "high_thresh"]. + "mid_thresh", "high_thresh"], "high_cloudfrac" : ["vert_type", "low_thresh", "mid_thresh", "high_thresh"], "default" : []