Concatenate foo with foo. Returns: foo + foo
(self)
| 2253 | self.foo = val |
| 2254 | |
| 2255 | def double_foo(self) -> str: |
| 2256 | """Concatenate foo with foo. |
| 2257 | |
| 2258 | Returns: |
| 2259 | foo + foo |
| 2260 | """ |
| 2261 | return self.foo + self.foo |
| 2262 | |
| 2263 | def copy(self, **kwargs) -> ModelDC: |
| 2264 | """Create a copy of the dataclass with updated fields. |
no outgoing calls
no test coverage detected