We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4b351f commit 537cd70Copy full SHA for 537cd70
astroquery/alma/utils.py
@@ -89,7 +89,7 @@ def parse_frequency_support(frequency_support_str):
89
Quantities representing the frequency range. It will ignore the resolution
90
and polarizations.
91
"""
92
- supports = str(frequency_support_str).split('U')
+ supports = frequency_support_str.tostring().decode('ascii').split('U')
93
94
freq_ranges = [(float(sup[0]),
95
float(sup[1].split(',')[0].strip(string.ascii_letters))) *
0 commit comments