Return the Options instance (the model._meta) from which to start processing. Normally, this is self.model._meta, but it can be changed by subclasses.
(self)
| 376 | ) |
| 377 | |
| 378 | def get_meta(self): |
| 379 | """ |
| 380 | Return the Options instance (the model._meta) from which to start |
| 381 | processing. Normally, this is self.model._meta, but it can be changed |
| 382 | by subclasses. |
| 383 | """ |
| 384 | if self.model: |
| 385 | return self.model._meta |
| 386 | |
| 387 | def clone(self): |
| 388 | """ |
no outgoing calls
no test coverage detected