unset_shape_array_mode#

ivy.unset_shape_array_mode()[source]#

Reset the mode of returning shape as ivy.Array to the previous state.

Return type:

None

Examples

>>> ivy.set_shape_array_mode(True)
>>> ivy.shape_array_mode
True
>>> ivy.unset_shape_array_mode()
>>> ivy.shape_array_mode
False