Skip to content

Commit 183d06d

Browse files
committed
freeze rounding
1 parent db3f08b commit 183d06d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

astroquery/heasarc/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def query_region_async(self, position: Union[coordinates.SkyCoord, str],
171171
# Generate the request
172172
request_payload = self._args_to_payload(
173173
mission=mission,
174-
entry="{},{}".format(c.ra.degree, c.dec.degree),
174+
entry="{:10f},{:.10f}".format(c.ra.degree, c.dec.degree),
175175
radius=u.Quantity(radius),
176176
**kwargs
177177
)

0 commit comments

Comments
 (0)