Having a check for the radar type causes a bug for some reason.

This commit is contained in:
April 2022-11-02 22:42:02 -07:00
parent 80ba053cf5
commit 01236e50d9
No known key found for this signature in database
GPG Key ID: 17A9A017FAA4DE5E

View File

@ -88,11 +88,6 @@ def getTime(timestamp) -> str:
return str(time)
async def collect(radarType: str):
if radarType != "satrad" or radarType != "radarmosaic":
l.error(f'Invalid radar type "{radarType}" -- Valid radar types include "satrad", "radarmosaic"')
return
ts = await getValidTimestamps(radarType)
frames = await downloadRadarFrames(radarType, ts)