Maciej Strömich

Results 18 comments of Maciej Strömich

@ericwb @ghugo @sigmavirus24 @lukehinds the pep8 check is failing with bunch of ``` tests/unit/formatters/test_html.py:10:1: H216: The unittest.mock module should be used rather than the third party mock package unless actually...

ah apparently @ericwb created already a PR for that #685

I just stumbled upon a similar issue. We're running our with `celery worker --beat ..` and this means that for every ecs instance we will have a beat service up...

It's not really an edge case. We have multiple buckets which are 1M+ objects. What we found useful was to exclude S3Object resource type while retaining S3Bucket. This will mean...

FYI https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html With boto3 you can achieve the same just by setting EmailMessage headers for `X-SES-SOURCE-ARN`, `X-SES-FROM-ARN` and `X-SES-RETURN-PATH-ARN` without all that STS code because boto3 handles everything for you.

Hi, awesome work and I appreciate the effort! We have bunch of option fields in our models and it would awesome if betterproto could render them in any form (personally...

importing works just fine https://packaging.python.org/en/latest/guides/single-sourcing-package-version/ ``` 6. Set the value to __version__ in sample/__init__.py and import sample in setup.py. ``` but it works also the way I showed in the...

also the link used in the `setup.py` about the versioning is broken and should be replaced with https://packaging.python.org/en/latest/guides/single-sourcing-package-version/

As the author of --exit-zero PR I can implement this enhancement fairly easy. I've few questions though. 1. should this maybe be implemented in a way that choosing medium level...