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