get_hard_locked_list

get list of hard locked attribute names

Generates a list of the MaciDataObj's currently hard-locked attribute names, and returns a list. This method currently has no parameters.

Useful if it is desired to view or reference all currently hard-locked attribute names.

data.get_hard_locked_list() -> list[str]

Basic Example of getting a list of the currently hard-locked attribute names of the MaciDataObj

list_data = data.get_hard_locked_list()

In this example, we simply use the get_hard_locked_list method on the MaciDataObj to get a generated copy of the currently hard-locked attribute names, currently held inside the maci object, as a list of strings, and assign the returned list data to a variable.

partner methods

Methods that provide related utility to this method

hard_lock_attr -> Hard Lock an attribute name

Last updated