From d050b58d3fde6a049104d8287f8d8cfbe3013d5d Mon Sep 17 00:00:00 2001 From: DR695H Date: Thu, 18 Apr 2019 10:56:38 -0400 Subject: move robotframeworkonap to subdirectory i also moved the build to maven based, although that isnt needed to work right now. Change-Id: Ib18d70e3ea4858cc4b9d51fdc2046b59202640ab Issue-ID: TEST-141 Signed-off-by: DR695H Signed-off-by: Gary Wu --- eteutils/csvLibrary.py | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 eteutils/csvLibrary.py (limited to 'eteutils/csvLibrary.py') diff --git a/eteutils/csvLibrary.py b/eteutils/csvLibrary.py deleted file mode 100644 index b38b4a5..0000000 --- a/eteutils/csvLibrary.py +++ /dev/null @@ -1,16 +0,0 @@ -import csv -class csvLibrary(object): - - def read_csv_file(self, filename): - '''This creates a keyword named "Read CSV File" - - This keyword takes one argument, which is a path to a .csv file. It - returns a list of rows, with each row being a list of the data in - each column. - ''' - data = [] - with open(filename, 'rb') as csvfile: - reader = csv.reader(csvfile) - for row in reader: - data.append(row) - return data -- cgit 1.2.3-korg