Files
openide/python/resources/inspectionDescriptions/PyRedeclarationInspection.html
T

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>