Skip to content

Commit b2b3738

Browse files
fixed affiliations
1 parent 6fa3085 commit b2b3738

2 files changed

Lines changed: 9 additions & 6 deletions

File tree

book/README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -117,12 +117,13 @@ Room: Talk room 1
117117
*Chair*: Jonathan Shimwell, Proxima Fusion
118118

119119
A panel session will be held with the following members:
120-
| Presenter | Affiliation |
121-
|:------------------------------|:----------------------------------------------------|
122-
| [Paul Wilson](bios/wilson.md) | [First Light Fusion](https://firstlightfusion.com/) |
123-
| [Martin Yagi](bios/yagi.md) | [ORNL](https://www.ornl.gov/) |
124-
| David Bernhodlt | [CFS](https://cfs.energy/) |
125-
| Matt Vernicchia | [MIT](https://www.mit.edu/) |
120+
| Presenter | Affiliation |
121+
|:------------------------------|:---------------------------------------------------------|
122+
| [Paul Wilson](bios/wilson.md) | [University of Wisconsin-Madison](https://www.wisc.edu/) |
123+
| [Martin Yagi](bios/yagi.md) | [First Light Fusion](https://firstlightfusion.com/) |
124+
| David Bernhodlt | [ORNL](https://www.ornl.gov/) |
125+
| Matt Vernicchia | [CFS](https://cfs.energy/) |
126+
| Aiden Fowler | [MIT](https://www.mit.edu/) |
126127

127128

128129
## Session P2: 11:20 - 11:50 (EST)

generate_timetable.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -494,11 +494,13 @@ def main():
494494
"Aiden Fowler",
495495
]
496496
affiliations = [
497+
"[University of Wisconsin-Madison](https://www.wisc.edu/)",
497498
"[First Light Fusion](https://firstlightfusion.com/)",
498499
"[ORNL](https://www.ornl.gov/)",
499500
"[CFS](https://cfs.energy/)",
500501
"[MIT](https://www.mit.edu/)",
501502
]
503+
assert len(presenters) == len(affiliations), "Number of presenters and affiliations must be equal"
502504
panel_data = []
503505
for presenter, affiliation in zip(presenters, affiliations):
504506
panel_data.append({"Presenter": presenter, "Affiliation": affiliation})

0 commit comments

Comments
 (0)