Martin Thoma

Results 446 comments of Martin Thoma

Just a short heads up: I'm recently spending most of my free time on PyPDF2. I do see those issues, but it might be a while until I work on...

Aparently f-strings are `ast.JoinedStr` and the parameters are automatically parsed. Variables are `ast.FormattedValue`. So we can recognize when we have an f-string.

I would try to get rid of the comment, e.g. as: ``` for p in reversed(path.parents): ... is_last_iteration = p == path.parent if is_last_iteration and p in some_list and some_bool:...

@MetRonnie Do you have an example where getting rid of the comments would not be desirable?

Thank you! I was actually wondering about this several times myself. In principle, I would have the necessary information to fix things. However, this is currently not possible with Flake8:...

There is actually a simple combination of tools that might do the job : 1. Black cover formatter 2. Find the joda conditions with flake8-simplify 3. Use simple string search+replace...

I execute cosmic-ray 5.6.1 with `Python 3.6.8` Interestingly, cosmic-ray also seems not to install the required dependencies. I tried the following `cr-config.toml` for my module [mpu](https://pypi.org/project/mpu/): ``` [cosmic-ray] module-path =...