Type declarations never hurt anybody
This commit is contained in:
parent
cf55011c1a
commit
6fd775b15c
1 changed files with 3 additions and 0 deletions
|
@ -25,6 +25,9 @@ def key_matches(key: str,
|
||||||
return date >= start and date <= end
|
return date >= start and date <= end
|
||||||
|
|
||||||
class S3Bucket():
|
class S3Bucket():
|
||||||
|
name: str
|
||||||
|
cache: dict
|
||||||
|
|
||||||
def __init__(self, s3, name: str=S3_BUCKET):
|
def __init__(self, s3, name: str=S3_BUCKET):
|
||||||
self.s3 = s3
|
self.s3 = s3
|
||||||
self.name = name
|
self.name = name
|
||||||
|
|
Loading…
Add table
Reference in a new issue