mtyrrell commited on
Commit
74e3f1a
·
1 Parent(s): bf83e2c

updated template file

Browse files
Files changed (1) hide show
  1. modules/utils.py +2 -1
modules/utils.py CHANGED
@@ -21,6 +21,7 @@ def create_excel():
21
  sheet = wb.active
22
  sheet.title = "template"
23
  columns = ['id',
 
24
  'scope',
25
  'technology',
26
  'financial',
@@ -31,7 +32,7 @@ def create_excel():
31
  sheet.append(columns) # Appending columns to the first row
32
 
33
  # formatting
34
- for c in sheet['A1:H4'][0]:
35
  c.fill = PatternFill('solid', fgColor = 'bad8e1')
36
  c.font = Font(bold=True)
37
 
 
21
  sheet = wb.active
22
  sheet.title = "template"
23
  columns = ['id',
24
+ 'organization',
25
  'scope',
26
  'technology',
27
  'financial',
 
32
  sheet.append(columns) # Appending columns to the first row
33
 
34
  # formatting
35
+ for c in sheet['A1:J4'][0]:
36
  c.fill = PatternFill('solid', fgColor = 'bad8e1')
37
  c.font = Font(bold=True)
38