(self, *, value=None)
| 182 | print("Example 19") |
| 183 | class MyContainer: |
| 184 | def __init__(self, *, value=None): |
| 185 | if value is None: |
| 186 | value = [] # Create when not supplied |
| 187 | self.value = value |
| 188 | |
| 189 | |
| 190 | print("Example 20") |
nothing calls this directly
no outgoing calls
no test coverage detected