Skip to content
Snippets Groups Projects
Commit 6d4aa011 authored by Lennard Geese's avatar Lennard Geese
Browse files

Add SessionIdentifier class

parent f84b0005
No related branches found
No related tags found
Loading
......@@ -7,4 +7,14 @@ class DataHandler(ABC):
self.invalidDriverId = "NO_DRIVER"
self.activateDebugOvertakeAnalysis = False
self.slickCompounds = ('SOFT', 'MEDIUM', 'HARD')
self.countOutPitstops = True
\ No newline at end of file
self.countOutPitstops = True
class SessionIdentifier:
year: int
event: int | str
sessionType: str
def __init__(self, year: int, event: int | str, sessionType: str = "R"):
self.year = year
self.event = event
self.sessionType = sessionType
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment