mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
8 lines
223 B
Python
8 lines
223 B
Python
import dataclasses
|
|
|
|
@dataclasses.dataclass(init=False)
|
|
class A1:
|
|
x: int = 0
|
|
|
|
def <warning descr="'__post_init__' would not be called until 'init' parameter is set to True">__post_init__</warning>(self):
|
|
pass |