Suggesting to use min()/max() #3406
Labels
Enhancement ✨
Improvement to a component
Good first issue
Friendly and approachable by new contributors
Help wanted 🙏
Outside help would be appreciated, good for new contributors
It'll be great to recognize code patterns that could be replaced with min() and max() functions. For example:
if value < 10: value = 10
with
value = max(value, 10)
The text was updated successfully, but these errors were encountered: