From 657cc5c45fc5ca65e84746c15d0a70097c29ce20 Mon Sep 17 00:00:00 2001 From: Sam Rabin Date: Sun, 11 Feb 2024 15:10:55 -0700 Subject: [PATCH] Fix imports in check_rxboth_run.py. --- python/ctsm/crop_calendars/check_rxboth_run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ctsm/crop_calendars/check_rxboth_run.py b/python/ctsm/crop_calendars/check_rxboth_run.py index 126ef98bbc..ae4decde30 100644 --- a/python/ctsm/crop_calendars/check_rxboth_run.py +++ b/python/ctsm/crop_calendars/check_rxboth_run.py @@ -6,7 +6,6 @@ import glob import os import numpy as np -import cropcal_module as cc # pylint: disable=import-error # Import the CTSM Python utilities. # sys.path.insert() is necessary for RXCROPMATURITY to work. The fact that it's calling this script @@ -15,6 +14,7 @@ os.path.dirname(os.path.realpath(__file__)), os.pardir, os.pardir, os.pardir, "python" ) sys.path.insert(1, _CTSM_PYTHON) +import ctsm.crop_calendars.cropcal_module as cc # pylint: disable=wrong-import-position from ctsm.crop_calendars.check_rx_obeyed import ( # pylint: disable=wrong-import-position check_rx_obeyed, )