Hideo Hattori

Results 42 comments of Hideo Hattori

``` $ cat ~/ins.py a = "a" foo = 1 type(a) == foo $ 2to3 -f all -f idioms ins.py RefactoringTool: Skipping implicit fixer: buffer RefactoringTool: Skipping implicit fixer: set_literal...

Currently, `noqa` follows the behavior defined in pycodestyle. Only error codes marked with a `^` in the following table will have NOQA enabled: http://pycodestyle.pycqa.org/en/latest/intro.html#error-codes It is preferable to specify `--ignore=E731`...

@yaacine I would like to reproduce the problem. Can you show me a sample code that I can actually input into autopep8? (gist, url, this pr comment, etc...)

This problem will be fixed in version 2.0.

@hayata-yamamoto @m3nu Thanks for using autopep8 👍 You need to add the `-a` option (`-aa`, `-aaa` too) to fix the indication about max-line-length. ``` $ cat target.py import random def...

Thanks for opening the issue. In this repository, we want to provide autopep8 itself as a tool, so we don't plan to own LSP and VS Code extension. Feel free...

v2.1.0 has been released. version 2.1.0 has removed the dependency on lib2to3.

There are two issues to be discussed and they are listed in order. # 1. First Issue First, @amirstm 's example is incorrect. ```console $ echo connector = f"socks5://{user}:{password}:{url}:{port}" connector...

autopep8 v2.1.0 has been released. version 2.1.0 now supports pycodestyle v2.11.0 and above.