Skip to content

Commit a2795e8

Browse files
committed
- Removed unnecessary comments
1 parent ff1cdd6 commit a2795e8

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

astroquery/mpc/core.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1094,23 +1094,20 @@ def _parse_result(self, result, **kwargs):
10941094
elif 's=s' in result.request.body: # sky Motion
10951095
names += ('dRA cos(Dec)', 'dDec')
10961096
units += ('arcsec/h', 'arcsec/h')
1097-
# Correct start and end for Motion columns if the results have 3 digit precision.
10981097
col_starts += (73, 82)
10991098
col_ends += (81, 91)
11001099

11011100
if 'Moon' in columns:
11021101
# table includes Alt, Az, Sun and Moon geometry
11031102
names += ('Azimuth', 'Altitude', 'Sun altitude', 'Moon phase',
11041103
'Moon distance', 'Moon altitude')
1105-
# Modified column start and end as motion column can have 3 digit precision.
11061104
col_starts += tuple((col_ends[-1] + offset for offset in
11071105
(1, 8, 13, 19, 26, 32)))
11081106
col_ends += tuple((col_ends[-1] + offset for offset in
11091107
(7, 12, 18, 25, 31, 36)))
11101108
units += ('deg', 'deg', 'deg', None, 'deg', 'deg')
11111109
if 'Uncertainty' in columns:
11121110
names += ('Uncertainty 3sig', 'Unc. P.A.')
1113-
# Modified column start and end as motion column can have 3 digit precision.
11141111
col_starts += tuple((col_ends[-1] + offset for offset in
11151112
(1, 10)))
11161113
col_ends += tuple((col_ends[-1] + offset for offset in

0 commit comments

Comments
 (0)