mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
7 lines
160 B
Python
7 lines
160 B
Python
from dataclasses import dataclass, field
|
|
|
|
@dataclass
|
|
class Foo:
|
|
bar1: str = field()
|
|
bar2: str = field(kw_only=True)
|
|
bar3: int = field(kw_only=False) |