Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

On a CannotCalculate exception, xtype processing should stop and an appropriate value returned #929

Merged
merged 3 commits into from
Feb 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/weewx/xtypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,8 @@ def has_data(obs_type, timespan, db_manager):
return True
except (weewx.UnknownType, weewx.UnknownAggregation):
pass
except weewx.CannotCalculate:
return False
# Tried all the get_aggregates() and didn't find a non-null value. Either it doesn't exist,
# or doesn't have any data
return False
Expand Down