mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
10 lines
184 B
Python
10 lines
184 B
Python
import attr
|
|
@attr.s(kw_only=True)
|
|
class Foo1:
|
|
bar = attr.ib(type=str)
|
|
@attr.s(kw_only=False)
|
|
class Foo2:
|
|
bar = attr.ib(type=str)
|
|
@attr.s
|
|
class Foo3:
|
|
bar = attr.ib(type=str) |