mirror of
https://github.com/odoo-ide/odoo-stubs.git
synced 2025-05-08 16:52:26 +03:00
11 lines
458 B
Python
11 lines
458 B
Python
from . import Command
|
|
from typing import Any
|
|
|
|
class Deploy(Command):
|
|
session: Any = ...
|
|
def __init__(self) -> None: ...
|
|
def deploy_module(self, module_path: Any, url: Any, login: Any, password: Any, db: str = ..., force: bool = ...): ...
|
|
def login_upload_module(self, module_file: Any, url: Any, login: Any, password: Any, db: Any, force: bool = ...): ...
|
|
def zip_module(self, path: Any): ...
|
|
def run(self, cmdargs: Any) -> None: ...
|