Is there a reason I'm missing why this can't just raise a NwsNoDataError like the other update functions?
|
`raise_no_data`currently can only be set to `False`. |
|
""" |
|
if raise_no_data: |
|
raise NotImplementedError( |
|
"raise_no_data=True not implemented for update_detailed_forecast" |
|
) |
Is there a reason I'm missing why this can't just raise a
NwsNoDataErrorlike the other update functions?pynws/src/pynws/simple_nws.py
Lines 301 to 306 in f03d161