Steve Jorgensen
Steve Jorgensen
When I try to build on Ubuntu (Pop!_OS 21.10) using `cargo install jless` I get errors trying to find xcb even though I have installed xcb: ``` Compiling jless v0.8.0...
Based on the responses to #672, I now know that to reference the directory containing the .envrc file being evaluated, I should use `$PWD`. There is nothing about that in...
Example: ```python assert x % None == tuple(1) ``` Results in "comparison to None should be 'if cond is None:' [E711]" even though the expression on the left is unknowable...
# Checklist * [x] I have checked the [issues list](https://github.com/celery/celery/issues?q=is%3Aissue+label%3A%22Issue+Type%3A+Enhancement%22+-label%3A%22Category%3A+Documentation%22) for similar or identical enhancement to an existing feature. * [x] I have checked the [pull requests list](https://github.com/celery/celery/pulls?q=is%3Apr+label%3A%22Issue+Type%3A+Enhancement%22+-label%3A%22Category%3A+Documentation%22) for existing...
In `get_page_child_by_type`, we have ```python try: if not self.advanced_mode and start is None and limit is None: return self._get_paged(url, params=params) else: response = self.get(url, params=params) if self.advanced_mode: return response return...
In the `attach_file` method, ```python with open(filename, "rb") as infile: content = infile.read() return self.attach_content( content, name, content_type, page_id=page_id, title=title, space=space, comment=comment, ) ``` Is there some reason that should...
For now, I'm maintaining a subclass that implements a `cql_paged()` method to be able to iterate over long CQL results. I would be willing to submit a merge request to...
I notice that nothing is done to try to deal with throttling responses which are non-success responses containing the "Retry-After" header. To be fair, although I see that there are...
I don't yet know if this problem exists with other methods, but when I use the `delete_space` method of a `Confluence` instance with a key that does not match an...