unset_shape_array_mode#

ivy.unset_shape_array_mode()[source]#

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

Examples

>>> ivy.set_shape_array_mode(True)
>>> ivy.shape_array_mode()
True
>>> ivy.unset_shape_array_mode()
>>> ivy.shape_array_mode()
False
Return type:

None