Skip to content

Commit

Permalink
Fix imports in check_rxboth_run.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
samsrabin committed Feb 11, 2024
1 parent a90049d commit 657cc5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/ctsm/crop_calendars/check_rxboth_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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,
)
Expand Down

0 comments on commit 657cc5c

Please sign in to comment.