MartinThoma / flake8-simplify

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

[New Rule] write input() instead of input("") #135

Open MartinThoma opened 2 years ago

MartinThoma commented 2 years ago

Explanation

input() does the same as input(""), but has less clutter

Example

# Bad
input("")

# Good
input()