mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-07-27 21:28:27 -06:00
13 lines
126 B
Python
13 lines
126 B
Python
from __future__ import annotations
|
|
|
|
import dataclasses
|
|
|
|
|
|
class Foo:
|
|
pass
|
|
|
|
|
|
@dataclasses.dataclass
|
|
class Bar:
|
|
foo: Foo
|