Skip to content

Commit

Permalink
FIX: incorrect quali session split (#429)
Browse files Browse the repository at this point in the history
  • Loading branch information
theOehrly committed Aug 21, 2023
1 parent f8c2b9b commit 6ffcca0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastf1/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -2786,7 +2786,7 @@ def split_qualifying_sessions(self) -> List[Optional["Laps"]]:
session_suspended = False
elif row['Status'] == 'Aborted':
session_suspended = True
elif row['Status'] == 'Finished':
elif row['Status'] in ('Finished', 'Inactive'):
# This handles the case when a qualifying session isn't
# restarted after a red flag.
session_suspended = False
Expand Down

0 comments on commit 6ffcca0

Please sign in to comment.