diff --git a/src/metpy/calc/thermo.py b/src/metpy/calc/thermo.py index 40274192b28..b4df3a2d7a1 100644 --- a/src/metpy/calc/thermo.py +++ b/src/metpy/calc/thermo.py @@ -5,6 +5,7 @@ from inspect import Parameter, Signature, signature import numpy as np +import time # Can drop fallback once we rely on numpy>=2 try: @@ -5170,6 +5171,7 @@ def scale_height(temperature_bottom, temperature_top): """ + time.sleep(2) t_bar = 0.5 * (temperature_bottom + temperature_top) return (mpconsts.nounit.Rd * t_bar) / mpconsts.nounit.g