Skip to content

Commit

Permalink
Fixing donut_diameter to be 200
Browse files Browse the repository at this point in the history
  • Loading branch information
gmegh committed Jul 30, 2024
1 parent 6a7b80c commit 2c29420
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/lsst/ts/externalscripts/auxtel/latiss_wep_align.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ async def run_align(self) -> LatissAlignResults:
"Running wep with: "
f"intra_visit_id={self.intra_visit_id}, "
f"extra_visit_id={self.extra_visit_id}, "
f"donut_diameter={2 * self.side}, "
f"donut_diameter={self.side}, "
f"timeout_get_image={self.timeout_get_image}. "
)

Expand All @@ -123,7 +123,7 @@ async def run_align(self) -> LatissAlignResults:
run_wep,
self.intra_visit_id,
self.extra_visit_id,
2 * self.side,
self.side,
self.timeout_get_image,
),
)
Expand Down

0 comments on commit 2c29420

Please sign in to comment.