Skip to content

ableton.v3.control_surface.display.notifications.meta (runtime)

Live 12 — Live Object Model & framework reference (descriptions and signatures).

Module constants

  • annotations = _Feature((3, 7, 0, 'beta', 1), None, 16777216)

Functions

Callable(*args, **kwargs)

Deprecated alias to collections.abc.Callable.

Callable[[int], str] signifies a function that takes a single parameter of type int and returns a str.

The subscription syntax must always be used with exactly two values: the argument list and the return type. The argument list must be a list of types, a ParamSpec, Concatenate or ellipsis. The return type must be a single type.

There is no syntax to indicate optional or keyword arguments; such function types are rarely used as callback types.

Notification(*args, **kwargs)

getmro(cls)

transform_notification(default: 'Notification', transform_fn: 'Callable[[str], str]')

update_special_attributes(cls, exclude_by_default=True)

Classes

class DefaultNotificationsMeta(type)

type(object) -> the object's type type(name, bases, dict, **kwds) -> a new type

Methods

__call__(self, /, *args, **kwargs)

Call self as a function.

__init__(self, /, *args, **kwargs)

Initialize self. See help(type(self)) for accurate signature.

mro(self, /)

Return a type's method resolution order.