(self, **kwargs)
| 104 | _seq = 0 |
| 105 | |
| 106 | def __init__(self, **kwargs): |
| 107 | MockOrmObject._seq += 1 |
| 108 | object.__setattr__(self, 'id', kwargs.pop('id', MockOrmObject._seq)) |
| 109 | for k, v in kwargs.items(): |
| 110 | object.__setattr__(self, k, v) |
| 111 | |
| 112 | |
| 113 | def _make_cls(name, col_names, bases=(MockOrmObject,)): |
nothing calls this directly
no test coverage detected