kkerce

Results 6 comments of kkerce

@cweagans The author can correct me if I'm wrong, but because `getoptions` refers to options rather than arguments, it feels as if handling arguments is out of scope. Admittedly in...

As I mentioned in [a discussion](https://github.com/ko1nksm/getoptions/discussions/56#discussioncomment-10085613), 99f9b41 breaks getoptions' "exit with no error status on `-h, --help`" functionality. It seems this PR will need to account for how to let...

Hi @mwbrooks and thanks for taking a look at the issue! Confirming that most of what you wrote above asking me to confirm is true, except I did not see...

@WilliamBergamin In the following manner. ``` python from slack_sdk.web import WebClient from slack_sdk.http_retry.builtin_handlers import RateLimitErrorRetryHandler slackClient = WebClient(token="") slackClient.retry_handlers.append(RateLimitErrorRetryHandler(max_retry_count=2)) ``` Regardless of whether a retry handler was configured via the...

In the `x-envoy-ratelimited: true` header situation, can the Python Slack SDK at least simply recognize that it's a rate-limiting situation and _not_ throw a `Failed to decode Slack API response:...

See [this](https://github.com/slackapi/python-slack-sdk/issues/1693#issuecomment-3044549865).