mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 01:09:46 +07:00
21 lines
282 B
HTML
21 lines
282 B
HTML
<html>
|
|
<body>
|
|
<p>Reports invalid usages of final classes,
|
|
methods and variables.</p>
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
from typing import final
|
|
|
|
|
|
@final
|
|
class A:
|
|
def a_method(self):
|
|
pass
|
|
|
|
|
|
class B(A):
|
|
def a_method(self):
|
|
pass
|
|
</code></pre>
|
|
</body>
|
|
</html> |