MartinThoma / flake8-simplify

❄ A flake8 plugin that helps you to simplify code
MIT License
185 stars 19 forks source link

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

Open MartinThoma opened 2 years ago

MartinThoma commented 2 years ago

Explanation

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

Example

# Bad
print("")

# Good
print()