vectro
vectro
I notice an lftp segmentation fault when running the 'find' command on a certain SFTP site. The SFTP server has the unusual characteristic that home = / and the connection...
flake8-return version 1.1.3 allows this construct ``` def myfunc(x): if x == 5: return None assert False ``` but disallows this one ``` def myfunc(x): if x == 5: return...
Update the type hints on Mixin objects to be more specific so that clients can know the specific RESTObject that would be returned. Closes #2062
The type hint on ListMixin.list says that it returns a `Union[base.RESTObjectList, List[base.RestObject]]` but this is too strict; each concrete subclass of ListMixin will actually return a Sequence[self._obj_cls]. I'm somewhat new...
Steps to reproduce: 1. Run sqitch deploy --registry xxx, where xxx is a schema that does not exist on the target database; and where there is a sqitch registry in...
Suppose you have a remote like `origin ssh://[email protected]:1234/group/project` Expected Behavior: git-town will construct URLs like `https://gitlab.domain/group/project/merge_requests` Actual Behavior: git-town constructs URLs like `https://gitlab.domain/1234/group/project/merge_requests`
**Describe the feature you'd like** Add `parse` to the list of subcommands we have checks for. **Additional context** Unlike `compile`, `run`, and `test`, `parse` can be run without a database...
Consider [this way](https://www.openstreetmap.org/way/1050323409). It has a landuse tag and address tags. However, a [nominatim search for the associated address](https://nominatim.openstreetmap.org/ui/search.html?q=23411+Summerfield%2C+Aliso+Viejo%2C+CA%2C+USA) (23411 Summerfield, Aliso Viejo, CA, USA) does not return this way...
### Bug summary When the display name of a custom field is passed into the `fields` parameter of `search_issues()`, the field name is correctly mapped to the internal Jira field...
A test case is worth a thousand words so let's just demo that. This code: ``` import overrides import typing_extensions Lit = typing_extensions.Literal["foo", "bar"] class MyBaseClass(overrides.EnforceOverrides): def my_method(self, lit :...