Improve alert handling, centralize aiohttp.ClientSession, and fix minor bugs

This commit is contained in:
2025-11-06 00:22:21 -08:00
parent 7e387b6cd7
commit faab0d5f7e
3 changed files with 24 additions and 10 deletions

View File

@@ -93,6 +93,7 @@ class Alert:
return (
self.alert_type == other.alert_type
and self.flavor == other.flavor
and self.region == other.region
and self.price == other.price
)