Skip to content

Commit

Permalink
Merge pull request #24 from francesconazzaro/main
Browse files Browse the repository at this point in the history
Fix a bug when adding events to the calendar
  • Loading branch information
keul authored Oct 15, 2024
2 parents 584fb67 + 033c0ba commit 6cdf09e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions haunts/spreadsheet.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,9 +194,7 @@ def sync_events(config_dir, sheet, data, calendars, days, month, projects=[], al
# Quick link to the event on the calendar
{
"range": f"{month}!{headers[get('LINK_COLUMN_NAME', 'Link')]}{y + 2}",
"values": [
[f"=HYPERLINK(\"{event[get('LINK_COLUMN_NAME', 'Link')]}\";\"open\")"]
],
"values": [[f"=HYPERLINK(\"{event['link']}\";\"open\")"]],
},
],
},
Expand Down

0 comments on commit 6cdf09e

Please sign in to comment.