Tim Stumbaugh
Tim Stumbaugh
When I would run this during testing, I would just run `tox` in the directory. I'm not entirely sure how we should do this with travis. Maybe it's enough just...
Using threading and a context manager, automatically advance a spinner at a customizable frequency during a context, removing some of the administrivia of running a spinner and enabling a spinner...
Sometimes we know that a particular import always has side effects and should never be removed. When running autoflake with `--remove-all-unused-imports`, there's not a way to say "everything except module...
Hi there, We are consider using datasketches in our C++ environment. The current organization, where there a bunch of folders, each with an `include/` directory, is a bit awkward for...
**Describe the bug** Given the following code snippet: ```python help(lambda x=( # comment "bar", ): False) ``` black crashes within the reformatting code with the error message: ``` error: cannot...
## Summary In async_handler, the `AsyncRetryHandler` wasn't being explicitly exported. This looks like an oversight. In `http_retry`, there is the "default" `ServerErrorRetryHandler`. Import this and and to `__all__` ## Requirements...
Hi there, We occasionally see transient errors from the Slack API in calls to `files.completeUploadExternal` that are done within the SDK's implementation of `files_upload_v2`. The error we see most frequently...
If you mix-in both `trio.abc.AsyncResource` and `tricycle.ScopedObject` into the same class, you get an error from mypy: ``` ERROR: Definition of "__aexit__" in base class "AsyncResource" is incompatible with definition...