SAT9/.resources/b8295320130bee9a62cee48844a59c85451538ee4b24f398081665093c1468eb

21 lines
378 B
Plaintext

def csv_import():
"""
Opens a file and returns the data as a list .
Args:
Returns:
the .csv as a nested list.
Raises:
KeyError: Raises an exception.
"""
newFile = system.file.openFile('gif')
# with open(newFile,"r") as f:
# csv_reader = csv.reader(f)
# device_list = []
# for line in csv_reader:
# device_list.append(line)
# return device_list