From c306f10c7afa0799f622b34ac41d7efae574c5e3 Mon Sep 17 00:00:00 2001 From: Kevin Schwarzwald Date: Tue, 13 Feb 2024 11:31:07 -0500 Subject: [PATCH] Fix typo in get_bnds --- xagg/aux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xagg/aux.py b/xagg/aux.py index d9bfdfa..e05e388 100644 --- a/xagg/aux.py +++ b/xagg/aux.py @@ -245,7 +245,7 @@ def get_bnds(ds,wrap_around_thresh='dynamic', raise KeyError('"lat"/"lon" not found in [ds]. Make sure the '+ 'geographic dimensions follow this naming convention (e.g., run `xa.fix_ds(ds)` before inputting.') - if ('lat_bnds' in ds) and (`lon_bnds` in ds): + if ('lat_bnds' in ds) and ('lon_bnds' in ds): # `xa.fix_ds()` should rename bounds to `lat/lon_bnds` # If bounds present, do nothing return ds