Skip to content

Commit

Permalink
SP-1737: Fix tab formatting error (#128)
Browse files Browse the repository at this point in the history
  • Loading branch information
rhiannonlynne authored Nov 17, 2024
2 parents f3cc873 + afe3dc6 commit d6d3161
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rubin_scheduler/scheduler/detailers/dither_detailer.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ def _generate_offsets_filter_change(self, filter_list, mjd, initial_offset):
# (we'll wipe this when we get to next fchange_idx)
offsets[fchange_idx:] += self.per_visit_rot * np.arange(len(filter_list) - fchange_idx)

offsets = np.where(offsets > self.max_rot, max_rot, offsets)
offsets = np.where(offsets > self.max_rot, self.max_rot, offsets)
return offsets

def __call__(self, observation_list, conditions):
Expand Down

0 comments on commit d6d3161

Please sign in to comment.