Skip to content

Commit

Permalink
ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
javierggt committed Nov 26, 2024
1 parent 62b5752 commit 341ceb8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion aperoll/star_field_items.py
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,10 @@ def __init__(self, attitude=None, alternate_outline=False):
self.centroids = [Centroid(i, parent=self) for i in range(8)]
self._centroids = np.array(
# pixels right outside the CCD by default
[(0, 511, 511, 511, 511, 14, -2490, 2507, False, False) for _ in self.centroids],
[
(0, 511, 511, 511, 511, 14, -2490, 2507, False, False)
for _ in self.centroids
],
dtype=[
("IMGNUM", int),
("IMGROW0_8X8", float),
Expand Down

0 comments on commit 341ceb8

Please sign in to comment.