(self, *args)
| 132 | k_init_only: dataclasses.InitVar[int] = 10 |
| 133 | |
| 134 | def some_method(self, *args): |
| 135 | raise RuntimeError('NestedClassWithMap.some_method() was called.') |
| 136 | |
| 137 | def __post_init__(self, k_init_only): |
| 138 | self.k_non_init = self.k_int * k_init_only |
nothing calls this directly
no outgoing calls
no test coverage detected