mirror of
https://github.com/odoo-ide/odoo-stubs.git
synced 2025-05-08 16:52:26 +03:00
14 lines
499 B
Python
14 lines
499 B
Python
from argparse import Namespace
|
|
|
|
BLACKLIST: set[str]
|
|
IGNORE: tuple[str, ...]
|
|
INSTALL_BLACKLIST: set[str]
|
|
|
|
def install(db_name: str, module_id: int, module_name: str) -> None: ...
|
|
def uninstall(db_name: str, module_id: int, module_name: str) -> None: ...
|
|
def cycle(db_name: str, module_id: int, module_name: str) -> None: ...
|
|
def parse_args() -> Namespace: ...
|
|
def test_full(args: Namespace) -> None: ...
|
|
def test_uninstall(args: Namespace) -> None: ...
|
|
def test_scripts(args: Namespace) -> None: ...
|