Skip to content

Commit

Permalink
Fix recursive call to solve_camera
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Sep 25, 2023
1 parent 700adfb commit 45bf079
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lvmguider/guider.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ async def solve_camera(
"Gaia matches. Cannot generate astrometric solution. "
"Trying astrometry.net"
)
return self.solve_camera(file, force_astrometry_net=True)
return await self.solve_camera(file, force_astrometry_net=True)
else:
wcs = wcs_from_gaia(matched_sources)
wcs = wcs
Expand Down

0 comments on commit 45bf079

Please sign in to comment.