| 33 | |
| 34 | |
| 35 | class SampleObject(ConfigMixin): |
| 36 | config_name = "config.json" |
| 37 | |
| 38 | @register_to_config |
| 39 | def __init__( |
| 40 | self, |
| 41 | a=2, |
| 42 | b=5, |
| 43 | c=(2, 5), |
| 44 | d="for diffusion", |
| 45 | e=[1, 3], |
| 46 | ): |
| 47 | pass |
| 48 | |
| 49 | |
| 50 | class SampleObject2(ConfigMixin): |
no outgoing calls
searching dependent graphs…