Peter Law

Results 100 issues of Peter Law

It would be great if this project supported building to wheels as this would speed up installation for users and mean that they didn't need to run `setup.py`. I'd be...

I've not tested it, so the simple case miiight just work (though I doubt it). I'm pretty sure the interesting cases won't work out of the box. [PEP 612](https://www.python.org/dev/peps/pep-0612/) introduces...

feature

**Describe the Bug** If you happen to typo the name of a method or attribute in your Python controller you get an error which appears to come from the Webots...

bug

I'm not sure how the Python API is built, however I was wondering whether it would be possible to create type annotations for it. This would help document the APIs...

feature

I'm guessing that the previous description either pre-dates the current signature or was a copy/paste from pre_request. The new description was established from the signature example and inspection of the...

I'd like to be able to run a command in CI to ensure that my `requirements.in` produces my `requirements.txt`, mostly as a guard against accidental edits to the latter which...

feature
needs discussion

Should `pycodestyle` disallow whitespace between a unary negation and its symbol? ``` python foo = - 2 ```

Hi, Thanks for this useful project. I was just wondering roughly what the timeline might be for the next release? From what I can see there's quite a few changes...

Given the following code, `pyre` outputs an error that the first overload signature is not valid for the given implementation, which I believe is incorrect. ``` python from typing import...

Given input: ``` python class A: def func(self): # Avoid circular import from .somewhere.utils import ( some_circular_func ) ``` Running `isort` results in: ``` python class A: def func(self): #...