You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
int(round(x))and int(round(x, 0)) and int(round(x, None)) can all simply be written round(x). However, unnecessary casts to int are prevalent. Please consider adding a rule to catch these?
The text was updated successfully, but these errors were encountered:
int(round(x))
andint(round(x, 0))
andint(round(x, None))
can all simply be writtenround(x)
. However, unnecessary casts toint
are prevalent. Please consider adding a rule to catch these?The text was updated successfully, but these errors were encountered: