| 251 | |
| 252 | |
| 253 | class ArrayValues(tuple): |
| 254 | def __new__(cls, *args, **kwargs): |
| 255 | return super(ArrayValues, cls).__new__(cls, tuple(args)) |
| 256 | |
| 257 | def __repr__(self): |
| 258 | return 'ArrayValues({0})'.format(tuple.__repr__(self)) |
| 259 | |
| 260 | |
| 261 | def parse_subdocument_content_as(content, # type: List[Dict[str, Any]] |
no outgoing calls
no test coverage detected