Skip to content
Snippets Groups Projects
DataHandler.py 307 B
Newer Older
  • Learn to ignore specific revisions
  • Lennard Geese's avatar
    T
    Lennard Geese committed
    from abc import ABC, abstractmethod
    
    class DataHandler(ABC):
    
        def __init__(self):
            self.numberOfDrivers = 20
            self.invalidDriverId = "NO_DRIVER"
            self.activateDebugOvertakeAnalysis = False
    
            self.slickCompounds = ('SOFT', 'MEDIUM', 'HARD')
            self.countOutPitstops = True