Florian Friesdorf

Results 34 issues of Florian Friesdorf

When pip-compile adds annotations for packages from files included with `-r` it uses a path relative to the current directory pip-compile is called from, instead of relative to the file...

enhancement
feature request
annotations

It would be great to have way to read auth data from https://www.passwordstore.org/ and other external utilities.

### Describe the bug According to rfc 8089 paths for file URIs are absolute. ``yarl.URL`` does not complain about them but displays a wrong repr. ### To Reproduce 1. yarl...

bug

### Steps to reproduce ```python def func(value): yield 1 generator = (x for x in range(10)) if value == 1: # pylint: disable=unused-variable,stop-iteration-return pass elif value == 2: abc =...

Bug :beetle:
C: Pragma's
Needs PR

It would be nice if click would support tab completion when prompting for files and paths.

f:completion
f:prompt

We have [dynamic default values](http://click.pocoo.org/dev/options/#dynamic-defaults-for-prompts) via lambda, I'd see myself often hacking around what could be achieved with dynamic types, ideally with the context available to react upon already parsed...

f:parser

We'd like to call noflo-jekyll via an API passing it the sources and getting back the rendered result instead of passing it source and target directory names.

If I edit a description (of an issue in GitLab) which is out-of-date it will be silently overwritten with my version. The in-browser editor of GitLab issues a warning in...

wont fix
bug upstream

Using (doom) emacs with lsp-mode, I see the following message when moving the cursor onto code: ``` LSP :: Error from the Language Server: TypeError: unhashable type: 'dict' (Invalid Parameters)...

For struct field names capnproto does not allow lower_case_with_underscores but recommends camelCase (mixedCase in [pep8](https://www.python.org/dev/peps/pep-0008/#descriptive-naming-styles): "Cap'n Proto declaration names should use camelCase and must not contain underscores. (Code generators may...