mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
(cherry picked from commit f4b52fc04911cc80b05fc155485fa5aafcd70bf4) GitOrigin-RevId: 76b3859ef35485c1704d9d12419fae927a3989c6
6 lines
158 B
Python
6 lines
158 B
Python
from typing_extensions import Final
|
|
from b import A
|
|
|
|
class B(A):
|
|
<warning descr="'A.a' is 'Final' and cannot be overridden">a</warning>: Final[str] = "3"
|