Mock model with parse method.
| 63 | |
| 64 | |
| 65 | class ModelWithParse: |
| 66 | """Mock model with parse method.""" |
| 67 | |
| 68 | def __init__(self, data): |
| 69 | self.data = data |
| 70 | |
| 71 | def parse(self): |
| 72 | return self.data |
| 73 | |
| 74 | |
| 75 | class ModelWithoutDict: |
no outgoing calls
searching dependent graphs…