Steven Myint
Steven Myint
The distinction between warnings (`stdout`) and errors (`stderr`) seems to go as far back as version 0.2 (https://github.com/PyCQA/pyflakes/commit/4fa714a29686be4f31845d5f31a79efa0e692662#diff-3f42f62f5489dcb22e5da7c982fa02c5R16): ```python def check(codeString, filename): try: tree = compiler.parse(codeString) except (SyntaxError, IndentationError): value...
I think this is a reasonable request. I've done this in various other tools. For example, see: https://github.com/myint/docformatter/blob/7a23f89a8bcfb117db2f388c6706d28e9bb30e9c/docformatter.py#L593-L626
@brupelo Please see https://github.com/myint/autoflake/pull/37#discussion_r184868642.
I'm not arguing against the `-` feature. 😄 Merely doing it in the right way, which I specified in the pull request. I would do it myself if I wasn't...
@fsouza Would you be interested in becoming a maintainer of this repository?
Maintaining would entail reviewing, triaging, and creating releases as you suggest. There are currently no other maintainers, but ideally there would be. I just took a look at https://github.com/fsouza/autoflake8, and...
I see. That sounds reasonable then. Welcome aboard!
@sigmavirus24 Any thoughts on who should be added as additional maintainers? I think the other PyCQA owners would have appropriate privileges now that I've moved this and `docformatter` to this...
Thanks! I tried this out in a file like: ```python from foo import bar as alpha, beta ``` ``` $ ./autoflake.py --pop __init__.py --- original/__init__.py +++ fixed/__init__.py @@ -1 +1,2...
Thanks. You might also want to test imports with tabs in the code: ```python from alpha import betaasgamma ```