Allie Fitter

Results 21 comments of Allie Fitter

Workaround for the meantime. ```from sys import version_info if version_info.major >= 3 and version_info.minor >= 10: """ ************** * WORKAROUND * ************** The apns2 package is throwing errors because some...

Thanks for the interest! I've personally never used mypy or another type checker, but my first intuition for this package was to use .pyi files. However, I wasn't able to...

Hmmm, actually..... As a quick fix for static type checking, do you think just adding .pyi files for the existing mock classes would work? Something like this: ``` boto3_type_annotations/ s3/...

@cowboygneox submitted pull request #9 which demonstrates how support for mypy would work. After a little bit of experimentation, it looks like this should play well with IDEs as well....

Welp, @JoeyBG, @cowboygneox, @hevy-CC4477, I've got some [good news](https://github.com/boto/boto3/issues/2036) for ya'll.

Sorry about the long silence. Haven't had much time for side projects over the last few months. As an explanation of my reasoning for not going forward with the `boto3-stubs`...

It looks like, it--and `RouteTable`'s other two attributes: `associations`, and `vpc`--aren't being parsed correctly or possibly, they aren't documented correctly. ``` class RouteTable(base.ServiceResource): associations_attribute: List # Should be "associations" propagating_vgws:...

The filter objects are a bit tricky. If I remember correctly, they didn't have documentation. However, this will soon be a [moot point](https://github.com/boto/boto3/issues/2036)

Wow, thanks for bringing this to my attention. I wasn't aware of this PEP. It pretty much changes the game. I'm thinking that we could just check in a new...

Made [the issue](https://github.com/boto/boto3/issues/2036) on `boto3`.