From b04135b1ce3972175f163cc6a96abc9ce2fc2b2e Mon Sep 17 00:00:00 2001 From: "P. L. Lim" <2090236+pllim@users.noreply.github.com> Date: Tue, 3 Dec 2024 14:59:28 -1000 Subject: [PATCH] Fix CI (#602) * Fix ref * Fix another ref --- astroplan/constraints.py | 2 +- astroplan/utils.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/astroplan/constraints.py b/astroplan/constraints.py index 5e95f431..b9f4b12a 100644 --- a/astroplan/constraints.py +++ b/astroplan/constraints.py @@ -237,7 +237,7 @@ def __call__(self, observer, targets, times=None, WHAT HAPPENS WHEN BOTH TIMES AND TIME_RANGE ARE SET? time_range : `~astropy.time.Time` (length = 2) Lower and upper bounds on time sequence. - time_grid_resolution : `~astropy.units.quantity` + time_grid_resolution : `~astropy.units.Quantity` Time-grid spacing grid_times_targets : bool if True, grids the constraint result with targets along the first diff --git a/astroplan/utils.py b/astroplan/utils.py index 4d4524cf..368dd823 100644 --- a/astroplan/utils.py +++ b/astroplan/utils.py @@ -83,7 +83,7 @@ def time_grid_from_range(time_range, time_resolution=0.5*u.hour): time_range : `~astropy.time.Time` (length = 2) Lower and upper bounds on time sequence. - time_resolution : `~astropy.units.quantity` (optional) + time_resolution : `~astropy.units.Quantity` (optional) Time-grid spacing Returns