Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def SPICEDOUBLE_CELL(size):
"""
Returns a Double 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.double(size)
def SPICEDOUBLE_CELL(size: int) -> SpiceCell:
"""
Returns a Double Spice Cell with a given size
:param size: number of elements
:return: empty Spice Cell
"""
return SpiceCell.double(size)