mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 09:04:15 +07:00
7 lines
102 B
Python
7 lines
102 B
Python
import dataclasses
|
|
|
|
@dataclasses.dataclass(init=False)
|
|
class A1:
|
|
x: int = 0
|
|
|
|
def __post<caret> |