(self, r, g, b)
| 1918 | INVALID = (256, 0, 0) |
| 1919 | |
| 1920 | def __init__(self, r, g, b): |
| 1921 | if not all(0 <= val <= 255 for val in (r, g, b)): |
| 1922 | raise InvalidRgbColorError(r, g, b) |
| 1923 | |
| 1924 | def test_intenum_transitivity(self): |
| 1925 | class number(IntEnum): |
nothing calls this directly
no test coverage detected