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
The use of else or elif becomes redundant and can be dropped if the last statement under the leading if / elif block is a break statement. In the case of an elif after break, it can be written as a separate if block. For else blocks after break, the …
Occurrences
There is 1 occurrence of this issue in the repository.
Description
The use of
else
orelif
becomes redundant and can be dropped if the last statement under the leadingif
/elif
block is abreak
statement. In the case of anelif
afterbreak
, it can be written as a separateif
block. Forelse
blocks afterbreak
, the …Occurrences
There is 1 occurrence of this issue in the repository.
See all occurrences on DeepSource → deepsource.io/gh/neozhaoliang/pywonderland/issue/PYL-R1723/occurrences/
The text was updated successfully, but these errors were encountered: