Skip to content

Commit

Permalink
Adding empty standard columns to mapping CSV
Browse files Browse the repository at this point in the history
Signed-off-by: Rob van der Veer <[email protected]>
  • Loading branch information
robvanderveer authored Oct 28, 2024
1 parent bff9a2a commit ccf0eb9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions application/utils/spreadsheet.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,9 @@ def add_offset_cre(
)
)
result = [{f"CRE {offset}": "" for offset in range(0, maxOffset + 1)}]
result[0]["standard|name"] = ""
result[0]["standard|id"] = ""
result[0]["standard|hyperlink"] = ""
result.extend(csv)

orphaned_documents = [doc for doc in related if doc not in visited_cres]
Expand Down

0 comments on commit ccf0eb9

Please sign in to comment.