Type declarations never hurt anybody

This commit is contained in:
XANTRONIX Industrial 2025-02-11 17:52:08 -05:00
parent cf55011c1a
commit 6fd775b15c

View file

@ -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