From 6fd775b15cca4e6717ec69db23b5bf1c706fe067 Mon Sep 17 00:00:00 2001 From: XANTRONIX Industrial Date: Tue, 11 Feb 2025 17:52:08 -0500 Subject: [PATCH] Type declarations never hurt anybody --- lib/nexrad/s3.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/nexrad/s3.py b/lib/nexrad/s3.py index ceecc0f..dccdac8 100644 --- a/lib/nexrad/s3.py +++ b/lib/nexrad/s3.py @@ -25,6 +25,9 @@ def key_matches(key: str, return date >= start and date <= end class S3Bucket(): + name: str + cache: dict + def __init__(self, s3, name: str=S3_BUCKET): self.s3 = s3 self.name = name