mirror of
https://github.com/odoo-ide/odoo-stubs.git
synced 2025-05-08 16:52:26 +03:00
11 lines
229 B
Python
11 lines
229 B
Python
from typing import Any
|
|
|
|
def load_script(path, module_name): ...
|
|
|
|
class MigrationManager:
|
|
cr: Any
|
|
graph: Any
|
|
migrations: Any
|
|
def __init__(self, cr, graph) -> None: ...
|
|
def migrate_module(self, pkg, stage): ...
|