mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 20:41:22 +07:00
8 lines
221 B
Python
8 lines
221 B
Python
import attr
|
|
|
|
@attr.dataclass(init=False)
|
|
class A1:
|
|
x: int = 0
|
|
|
|
def <warning descr="'__attrs_post_init__' would not be called until 'init' parameter is set to True">__attrs_post_init__</warning>(self):
|
|
pass |