Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def SPICEBOOL_CELL(size):
"""
Returns a Bool Spice Cell with a given size
:param size: number of elements
:type size: int
:return: empty Spice Cell
:rtype: spiceypy.utils.support_types.SpiceCell
"""
return SpiceCell.bool(size)
def SPICEBOOL_CELL(size: int) -> SpiceCell:
"""
Returns a Bool Spice Cell with a given size
:param size: number of elements
:return: empty Spice Cell
"""
return SpiceCell.bool(size)