mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 23:51:37 +07:00
GitOrigin-RevId: 0f65429042ebde43cbf04ec66abf6f392e71ae67
10 lines
109 B
Python
10 lines
109 B
Python
from dataclasses import *
|
|
|
|
|
|
@dataclass(eq=True)
|
|
class Foo:
|
|
foo: int
|
|
|
|
|
|
print(Foo(foo=42))
|
|
# <ref> |