pywonderland
pywonderland copied to clipboard
(PYL-R1723) Unnecessary `else` / `elif` used after `break`
Description
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.
See all occurrences on DeepSource → deepsource.io/gh/neozhaoliang/pywonderland/issue/PYL-R1723/occurrences/