Source code for org.observer
from onegov.core.orm import observes as base_observes
from typing import Any, TypeVar, TYPE_CHECKING
if TYPE_CHECKING:
from collections.abc import Callable
[docs]
def observes(*paths: str) -> 'Callable[[_F], _F]':
return base_observes(*paths, scope='onegov.org.app.OrgApp')