Daniel Fortunov
Daniel Fortunov
Logging at WARN level isn't ideal, even if you can supply your own logger you still can't (easily) change the log level that messages go to. A more generic way...
## Crash Report Just trying out dmypy for the first time and I encountered the below issue when trying to check an individual file after starting the daemon and checking...
The .ipynb_checkpoints/ directory is only needed locally for notebook checkpoints. This commit removes the checked-in version of this directory and adds it to the .gitignore file, so that it won't...
Models such as `Responders` define the `__eq__()` and `__ne__()` methods appropriately, but not `__hash__()`. From the Python [documentation](https://docs.python.org/2.7/reference/datamodel.html#object.__hash__): > If a class [...] defines `__cmp__()` or `__eq__()` but not `__hash__()`,...
Calling `AlertApi.get_request_status()` immediately after `create_alert()` sometimes results in an `ApiException` with `status == 404` being raised by `get_request_status()`. I believe the reason for this is that the `alerts/requests/{id}` REST endpoint...
Not all requests require a body, however it looks like the Swagger API does not permit a request with an empty body. For example, the [close alert](https://docs.opsgenie.com/docs/alert-api#section-close-alert) method does not...
It's not possible to decrement the loop variable! I'm currently working around this by using a custom class derived from `int` which redefines `__iadd__` as `__isub__` but some of my...