Set the attribute foo. Args: val: The value to set.
(self, val: str)
| 2245 | ls: list[dict] = dataclasses.field(default_factory=list) |
| 2246 | |
| 2247 | def set_foo(self, val: str): |
| 2248 | """Set the attribute foo. |
| 2249 | |
| 2250 | Args: |
| 2251 | val: The value to set. |
| 2252 | """ |
| 2253 | self.foo = val |
| 2254 | |
| 2255 | def double_foo(self) -> str: |
| 2256 | """Concatenate foo with foo. |
no outgoing calls
no test coverage detected