(cls, db, namespace)
| 392 | |
| 393 | @classmethod |
| 394 | def push_engine(cls, db, namespace): |
| 395 | assert _current, "Can't push without a default Config set up" |
| 396 | cls.push( |
| 397 | Config( |
| 398 | db, _current.db_opts, _current.options, _current.file_config |
| 399 | ), |
| 400 | namespace, |
| 401 | ) |
| 402 | |
| 403 | @classmethod |
| 404 | def push(cls, config, namespace): |
no test coverage detected