flake8-simplify
flake8-simplify copied to clipboard
[New Rule] write print() instead of print("")
Explanation
It does the same thing and print()
is shorter.
Example
# Bad
print("")
# Good
print()