mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 02:38:59 +07:00
* Dedicated inspections for `ClassVar` variables in variable declarations, variable reassignments, function parameters, local and return variables * Types of `ClassVar` variables now resolves correctly * Tests for `ClassVar` inspections GitOrigin-RevId: 0fd0ef0126ba2c2801ef82bcbeca4ea9b0c48c73
6 lines
92 B
Python
6 lines
92 B
Python
from typing import ClassVar
|
|
|
|
from mod import C
|
|
|
|
class D(C):
|
|
x = 4 # type: ClassVar[int] |