From 53d85cdbeb3f60f3a53630c1dc533eea28f8ab62 Mon Sep 17 00:00:00 2001 From: Alicia Key Date: Mon, 21 Oct 2019 14:12:50 -0600 Subject: [PATCH] Issue #23 Change "Variable of DataFrame" to "Variable or DataFrame" --- landbosse/excelio/XlsxGenerator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/landbosse/excelio/XlsxGenerator.py b/landbosse/excelio/XlsxGenerator.py index 1c6da8a6..dfe12cca 100644 --- a/landbosse/excelio/XlsxGenerator.py +++ b/landbosse/excelio/XlsxGenerator.py @@ -165,7 +165,7 @@ def tab_details(self, rows): worksheet.set_column(5, 5, 66) worksheet.set_column(0, 2, 17) - for idx, col_name in enumerate(['Project ID', 'Module', 'Variable of DataFrame', 'name', 'unit', 'Numeric value', 'Non-numeric value']): + for idx, col_name in enumerate(['Project ID', 'Module', 'Variable or DataFrame', 'name', 'unit', 'Numeric value', 'Non-numeric value']): worksheet.write(0, idx, col_name, self.header_format) # Go through each row and create Excel rows from each of those rows.