Skip to content

Commit 3941d08

Browse files
groovecoderCopilot
andauthored
Update src/meetings.py
Co-authored-by: Copilot <[email protected]>
1 parent 90e22e7 commit 3941d08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/meetings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ async def parse_meetings(html: str) -> List[Dict[str, str]]:
9292
}
9393

9494
# Extract agenda link if available
95-
agenda_cells = row.css('td.listItem:has(a[href*="AgendaViewer.php"]')
95+
agenda_cells = row.css('td.listItem:has(a[href*="AgendaViewer.php"])')
9696
agenda_link = agenda_cells[0].css_first("a") if agenda_cells else None
9797
if agenda_link is not None:
9898
meeting_data["agenda"] = urljoin(

0 commit comments

Comments
 (0)