mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-22 11:29:28 +07:00
10 lines
253 B
HTML
10 lines
253 B
HTML
<html>
|
|
<body>
|
|
This inspection detects unconditional redeclarations of names without being used in between, like this: <br/>
|
|
<pre>def x(): pass
|
|
x = 2
|
|
</pre>
|
|
It applies to function and class declarations, and top-level assignments. <br/>
|
|
</body>
|
|
</html>
|