Samuel Searles-Bryant

Results 16 comments of Samuel Searles-Bryant

pydocstyle doesn't use this setting for the E501 check ([maximum line length](https://github.com/PyCQA/pycodestyle/blob/main/pycodestyle.py#L264-L294)) that B950 replaces. The setting is only used to configure the W505 check ([maximum doc length](https://github.com/PyCQA/pycodestyle/blob/main/pycodestyle.py#L1749-L1794)). How should...

No longer needed -- this was done by #88.

That mypy bug appears to have been fixed, but I'm seeing something that *looks* like a similar problem with `dict`. The example in @berquist's original comment is also still failing...

I just had a look at implementing this and realised that this is exactly what the 'pipe' format does. The README even points out that the 'github' format is the...

I've tried to do this but I'm having trouble with the stub files. They don't seem to match the type annotations I put in the actual Python modules (even after...

Hi! Sorry for leaving you hanging for so long. You're absolutely right about assertions being no good here. We'd love to see this fixed to raise a better exception.

> I'm interested in the CI use case for fixes here. Is CI expecting to auto-amend the fixes in this case, but still fail if the repo is not "lint...

I've found another one that's causing us problems: decorators. ```python from dataclasses import dataclass @dataclass() class C: pass # lint-fixme: ExplicitFrozenDataclass @dataclass() class C: pass @dataclass() # lint-fixme: ExplicitFrozenDataclass class...

I have written some failing tests to demonstrate these problems in #413. I haven't worked out how to demonstrate the function def problem yet, so I'd appreciate any advice you...

I have found another case. This looks superficially similar to the comprehensions case. In the following file (`t.py`), we would expect the violation to be reported for the first function,...