(self)
| 44 | self.values = args # given individual objects |
| 45 | |
| 46 | def __len__(self): |
| 47 | return len(self.values) |
| 48 | |
| 49 | # deliberately don't act like a collection so that we fail fast if |
| 50 | # code doesn't know that this is supposed to represent Options, rather |
nothing calls this directly
no outgoing calls
no test coverage detected