Files
openide/python/python-psi-impl/resources/inspectionDescriptions/PyUnreachableCodeInspection.html
Louis Vignier 1869ec9da6 [codeInspection] Fix python inspection descriptions
GitOrigin-RevId: 56876a5dd073a06c3fcc92f63ed1f5674830bc25
2023-04-28 13:13:25 +00:00

14 lines
301 B
HTML

<html>
<body>
<p>Reports code fragments that cannot be normally reached.</p>
<p><b>Example:</b></p>
<pre><code>
if True:
print('Yes')
else:
print('No')
</code></pre>
<p>As a fix, you might want to check and modify the algorithm to ensure it implements
the expected logic.</p>
</body></html>