openssh_key.utils.readonly_static_property

class openssh_key.utils.readonly_static_property(getter)

Bases: Generic[openssh_key.utils.ReadonlyStaticPropertyTypeVar]

A static property that calls the first method in an object’s MRO of the same name as that of the provided method.

Parameters

getter (Union[Callable[[], TypeVar(ReadonlyStaticPropertyTypeVar)], Callable[[Type[Any]], TypeVar(ReadonlyStaticPropertyTypeVar)]]) – The method the name of which is that of the method to call.

__init__(getter)

Methods

__init__(getter)