(
self, red: int, green: int, blue: int
)
| 21 | |
| 22 | class RGB: |
| 23 | def __init__( |
| 24 | self, red: int, green: int, blue: int |
| 25 | ) -> None: # Changed |
| 26 | self.red = red |
| 27 | self.green = green |
| 28 | self.blue = blue |
| 29 | |
| 30 | |
| 31 | obj = RGB(1, "bad", 3) |
nothing calls this directly
no outgoing calls
no test coverage detected