flake8-simplify icon indicating copy to clipboard operation
flake8-simplify copied to clipboard

[New Rule] write print() instead of print("")

Open MartinThoma opened this issue 2 years ago • 0 comments

Explanation

It does the same thing and print() is shorter.

Example

# Bad
print("")

# Good
print()

MartinThoma avatar Apr 02 '22 16:04 MartinThoma