mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
16 lines
396 B
HTML
16 lines
396 B
HTML
<html>
|
|
<body>
|
|
<p>Reports unconditional redeclarations of names without being used in between.</p>
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
def x(): pass
|
|
|
|
|
|
x = 2
|
|
</code></pre>
|
|
<p>It applies to function and class declarations, and top-level assignments. </p>
|
|
<p>When the warning is shown, you can try a recommended action, for example, you might be prompted to
|
|
rename the variable.</p>
|
|
</body>
|
|
</html>
|